Files
Kao/config.json
Spencer Grimes 66c9790d2b Bump to v1.1.0, enable network and docker detectors
- Version bump reflecting new features (sounds, tap reaction, docker detector)
- Rename title to Kao
- Enable network and docker detectors by default

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-03 20:57:18 -06:00

67 lines
1.2 KiB
JSON

{
"port": 5100,
"aggregator": {
"script": "aggregator.py"
},
"detectors": [
{
"name": "disk_space",
"enabled": true,
"script": "detectors/disk_space.py",
"env": {
"CHECK_INTERVAL": "300",
"THRESHOLD_WARNING": "85",
"THRESHOLD_CRITICAL": "95"
}
},
{
"name": "cpu",
"enabled": true,
"script": "detectors/cpu.py",
"env": {
"CHECK_INTERVAL": "30",
"THRESHOLD_WARNING": "85",
"THRESHOLD_CRITICAL": "95"
}
},
{
"name": "memory",
"enabled": true,
"script": "detectors/memory.py",
"env": {
"CHECK_INTERVAL": "30",
"THRESHOLD_WARNING": "85",
"THRESHOLD_CRITICAL": "95"
}
},
{
"name": "service",
"enabled": false,
"script": "detectors/service.py",
"env": {
"CHECK_INTERVAL": "30",
"SERVICES": "nginx,postgres"
}
},
{
"name": "network",
"enabled": true,
"script": "detectors/network.py",
"env": {
"CHECK_INTERVAL": "60",
"HOSTS": "8.8.8.8,google.com",
"TIMEOUT": "5"
}
},
{
"name": "docker",
"enabled": true,
"script": "detectors/docker.py",
"env": {
"CHECK_INTERVAL": "60",
"RESTART_THRESHOLD": "3",
"CONTAINERS": ""
}
}
]
}