46 lines
1.0 KiB
Plaintext
46 lines
1.0 KiB
Plaintext
# LogWisp Minimal Configuration
|
|
# Save as: ~/.config/logwisp.toml
|
|
|
|
# Basic pipeline monitoring application logs
|
|
[[pipelines]]
|
|
name = "app"
|
|
|
|
# Source: Monitor log directory
|
|
[[pipelines.sources]]
|
|
type = "directory"
|
|
options = { path = "/var/log/myapp", pattern = "*.log", check_interval_ms = 100 }
|
|
|
|
# Sink: HTTP streaming
|
|
[[pipelines.sinks]]
|
|
type = "http"
|
|
options = {
|
|
port = 8080,
|
|
buffer_size = 1000,
|
|
stream_path = "/stream",
|
|
status_path = "/status"
|
|
}
|
|
|
|
# Optional additions:
|
|
|
|
# 1. Filter for errors only:
|
|
# [[pipelines.filters]]
|
|
# type = "include"
|
|
# patterns = ["ERROR", "WARN", "CRITICAL", "FATAL"]
|
|
|
|
# 2. Enable rate limiting:
|
|
# Modify the sink options above:
|
|
# options = {
|
|
# port = 8080,
|
|
# buffer_size = 1000,
|
|
# rate_limit = { enabled = true, requests_per_second = 10.0, burst_size = 20 }
|
|
# }
|
|
|
|
# 3. Add file output:
|
|
# [[pipelines.sinks]]
|
|
# type = "file"
|
|
# options = { directory = "/var/log/logwisp", name = "app" }
|
|
|
|
# 4. Change LogWisp's own logging:
|
|
# [logging]
|
|
# output = "file"
|
|
# level = "info" |