We have telegraf 1.9.1 installed on machines running Windows 10, 2012 and 2016. All inputs using win_perf_counters. object are working fine except for ObjectName = “UDPv4” and ObjectName = “TCPv4”. I have verified that these objects present. However these are not being sent to influxdb. I have also examined the output by running this command.
PS C:\Program Files\telegraf> .\telegraf.exe --test. The other configured inputs appear, but not those for UDPv4 and TCPv4.
Below is the configuration we are using. Anybody have any ideas on why this isn’t working?
[[inputs.win_perf_counters.object]]
ObjectName = “UDPv4”
Instances = ["*"]
Counters = [
“Datagrams/sec”,
“Datagrams Received/sec”,
“Datagrams No Port/sec”,
“Datagrams Received Errors”,
]
Measurement = “win_net_stats”
[[inputs.win_perf_counters.object]]
ObjectName = “TCPv4”
Instances = ["*"]
Counters = [
“Segments Retransmitted/sec”,
“Connections Reset”
]
Measurement = “win_net_stats”