Ad Widget

Collapse

windows teamed nic counter

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • robertmd
    Junior Member
    • Sep 2015
    • 1

    #1

    windows teamed nic counter

    I am attempting to get a perf counter working on a teamed interface

    i have done the following
    Run
    ./zabbix_agentd.exe -c c:\zabbix\conf\zabbix_agentd.win.conf -t net.if.discovery

    in here i have an interface called vlan356

    i have placed the following within the conf file

    PerfCounter= lanin,"\Network Interface(VLAN659)\Bytes Received/sec",60

    and then used the key of lanin

    i am getting not data back with a not supported on the host

    i have also tried setting this key directly as follows
    perf_counter[\Network Interface(VLAN659)\Bytes Received/sec]

    with the same result

    Any help on what i need to do here is much appreciated
  • Chewbakka-Wakka
    Junior Member
    • Feb 2018
    • 25

    #2
    Search for what counter name appears to make sure it is valid. typeperf.exe -qx > <<outputfile>> and look for this interface. Or use Get-Counter -ListSet * | select -expand PathsWithInstances | Select-String -Pattern "Network Interface" and look for it there.

    Comment

    Working...