python-esmonitor/examples/config.json

44 lines
820 B
JSON
Raw Normal View History

2015-12-04 22:41:57 -08:00
{
"backend": {
2015-12-06 16:03:02 -08:00
"url": "http://10.0.3.15:9200/"
2015-12-04 22:41:57 -08:00
},
"monitors": [
{
"type":"uptime",
2015-12-05 00:11:26 -08:00
"freq":"30",
2015-12-04 22:41:57 -08:00
"args":{}
2015-12-05 01:22:07 -08:00
},
{
"type":"load",
"freq":"30",
"args":{}
2015-12-05 02:41:14 -08:00
},
{
"type":"meminfo",
"freq":"30",
"args":{}
2015-12-05 16:46:45 -08:00
},
{
"type":"procs",
"freq":"30",
"args":{}
2015-12-05 17:34:46 -08:00
},
{
"type":"diskspace",
"freq":"30",
"args": {
"filesystems": [
"/",
2015-12-06 16:03:02 -08:00
"/var",
"/home"
2015-12-05 17:34:46 -08:00
]
}
2015-12-09 15:47:47 -08:00
},
{
"type":"diskio",
"freq":"30",
"args":{}
2015-12-04 22:41:57 -08:00
}
]
2015-12-09 15:47:47 -08:00
}