mirror of
https://github.com/centreon/centreon-plugins.git
synced 2025-08-31 06:28:26 +02:00
37 lines
793 B
Plaintext
37 lines
793 B
Plaintext
{
|
|
"collect": {
|
|
"snmp": [
|
|
{
|
|
"name": "total",
|
|
"oid": "1.3.6.1.4.1.2021.4.6.0",
|
|
"query": "Get", // par défaut walk
|
|
},
|
|
{
|
|
"name": "free",
|
|
"oid": "1.3.6.1.4.1.2021.4.11.0",
|
|
"query": "Get", // par défaut walk
|
|
}
|
|
]
|
|
},
|
|
"compute": {
|
|
"metrics": [
|
|
{
|
|
"name": "core.mem.usage.percent",
|
|
"value": "100 * (1 - {free}/{cpu})",
|
|
"uom": "%", // optional
|
|
"min": 0, // optional
|
|
"max": 100, // optional
|
|
"threshold-suffix": "mem", // optional (example: --warning-mem=78 --critical-mem=90)
|
|
},
|
|
{
|
|
"name": "avg.cpu.usage.percent",
|
|
"value": "Average({cpu})", // si agregation, pas de prefix
|
|
"uom": "%", // optional
|
|
"min": 0, // optional
|
|
"max": 100 // optional
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|