Hi Experts
I would like to collect performance counter of IIS.
I wrote it in telegraf.conf as below:
[[inputs.win_perf_counters.object]]
# Processor usage, alternative to native, reports on a per core.
ObjectName = “.NET Data Provider for SqlServer"
Instances = [”_lm_w3svc_3_root-1-*"] # my problem in here
Counters = [
“NumberOfFreeConnections”,
“NumberOfActiveConnections”,
“SoftDisconnectsPerSecond”,
“SoftConnectsPerSecond”
]
Measurement = “ASPnet_Connections”
Unfortunately, it seems not work.
please let me know if telegraf is support.
Thanks