#Perf counter information
1 messages · Page 1 of 1 (latest)
@vivid vector You can get counter information for system:node through below CLI
bin/zapi --poller POLLERNAME show counters --object system:node
Below is the description of few of these counters
"desc": "Network KB received per second",
"is-deprecated": "false",
"name": "net_data_recv",
"privilege-level": "admin",
"properties": "rate",
"unit": "kb_per_sec"
},
"desc": "Network KB sent per second",
"is-deprecated": "false",
"name": "net_data_sent",
"privilege-level": "admin",
"properties": "rate",
"unit": "kb_per_sec"
},
If you have dasel installed then it is easy to view these as json with below command
bin/zapi --poller POLLERNAME show counters --object system:node --config harvest_openlab.yml
thank you