Netctr re-config the linux_nic_check = "lnx_if" to display drop packet

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

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed. Contact an admin if you think this should be re-opened.