the lnx_if can get attribute like this
netctr_counter_indices = {
# Receive
"rx_bytes": 0,
"rx_packets": 1,
"rx_errors": 2,
"rx_drop": 3,
"rx_fifo": 4,
"rx_frame": 5,
"rx_compressed": 6,
"rx_multicast": 7,
# Transmit
"tx_bytes": 8,
"tx_packets": 9,
"tx_errors": 10,
"tx_drop": 11,
"tx_fifo": 12,
"tx_collisions": 13,
"tx_carrier": 14,
"tx_compressed": 15,
}
but I got this attribute is monitored from share/check_mk/checks/netctr
netctr_counters = [
"rx_bytes",
"tx_bytes",
"rx_packets",
"tx_packets",
"rx_errors",
"tx_errors",
"tx_collisions",
]
I had customed netctr_counters for showing graph of drop, fifo, latency but it not display on web view
Anybody have an ideal for that?
Am i need config in another file to display more graph i need