Files
logwisp/doc/README.md

2.6 KiB

LogWisp Documentation

Welcome to the LogWisp documentation. This guide covers all aspects of installing, configuring, and using LogWisp for multi-stream log monitoring.

📚 Documentation Index

Getting Started

Configuration

Features

Operations

Advanced Topics

💡 Common Use Cases

Single Application Monitoring

Monitor logs from one application with basic filtering:

[[streams]]
name = "myapp"
[streams.monitor]
targets = [{ path = "/var/log/myapp", pattern = "*.log" }]
[[streams.filters]]
type = "include"
patterns = ["ERROR", "WARN"]

Multi-Service Architecture

Monitor multiple services with different configurations:

logwisp --router --config /etc/logwisp/services.toml

High-Security Environments

Enable authentication and rate limiting:

[streams.httpserver.rate_limit]
enabled = true
requests_per_second = 10.0
max_connections_per_ip = 3

🔍 Finding Help

📝 License

BSD-3-Clause