v0.1.0 first commit

This commit is contained in:
2025-06-30 20:55:31 -04:00
commit 294771653c
11 changed files with 875 additions and 0 deletions

26
config/logwisp.toml Normal file
View File

@ -0,0 +1,26 @@
# Example configuration for LogWisp
# Default directory: ~/.config/logwisp.toml
# Port to listen on
port = 8080
[monitor]
# How often to check for file changes (milliseconds)
check_interval_ms = 100
# Paths to monitor
[[monitor.targets]]
path = "./"
pattern = "*.log"
[[monitor.targets]]
path = "/var/log/"
pattern = "*.log"
#[[monitor.targets]]
#path = "/home/user/app/logs"
#pattern = "app-*.log"
[stream]
# Buffer size for each client connection
buffer_size = 1000