Initial commit: LogMaster with Viewer Collector Monitor modes
Some checks failed
LogMaster CI/CD / build-and-test (push) Has been cancelled
LogMaster CI/CD / docker (push) Has been cancelled

This commit is contained in:
2026-05-04 13:50:15 +02:00
commit 44cd9ab001
231 changed files with 29018 additions and 0 deletions

41
logviewer.config.json Normal file
View File

@@ -0,0 +1,41 @@
{
"mode": "both",
"port": 8080,
"host": "0.0.0.0",
"viewer": {
"sources": [],
"theme": "dark",
"refreshInterval": 2000,
"tailMode": true,
"maxLines": 50000,
"defaultLevel": "ALL"
},
"collector": {
"enabled": true,
"storageDir": "./collector-data",
"maxLinesPerStream": 100000,
"maxStreams": 50,
"persistToDisk": true,
"udp": {
"enabled": true,
"port": 5140
},
"rotation": {
"maxSizeBytes": 5242880,
"maxAgeMs": 600000,
"compression": "gzip",
"fileExtension": ".log"
},
"forwardTargets": [
{
"type": "console"
}
]
},
"s3": {
"sources": {}
},
"remoteCollector": {
"url": ""
}
}