HI Team,
We are using Telegraf Open source data for pulling Windows servers Infra metrics such as CPU, Memory & Disk by using Influxdata. But those metrics are not coming to our DataDog integrations as a metrics even though it is enabled in Custom Performance counters and working fine with DataDog.
Can anyone recommend what’s wrong with this??
Example:- Referring below Syntax from Influx DB public repository to getting this work in telegraf.config.
###############################################################################
INPUT PLUGINS
###############################################################################
[[inputs.win_perf_counters]]
UseWildcardsExpansion = true
CountersRefreshInterval = “5m”
[[inputs.win_perf_counters.object]]
ObjectName = “LogicalDisk”
Instances = [ “*” ]
Counters = [ “%Free Space” ]
Measurement = “win_disk”