My telegraf config includes both ASP.NET
and ASP.NET Applications
objects for win_perf.
[[inputs.win_perf_counters.object]]
# IIS, ASP.NET Applications
ObjectName = "ASP.NET Applications"
Counters = ["Cache Total Entries","Cache Total Hit Ratio","Cache Total Turnover Rate","Output Cache Entries","Output Cache Hits","Output Cache Hit Ratio","Output Cache Turnover Rate","Compilations Total","Errors Total/Sec","Pipeline Instance Count","Requests Executing","Requests in Application Queue","Requests/Sec"]
Instances = ["*"]
Measurement = "win_aspnet_app"
#IncludeTotal=false #Set to true to include _Total instance when querying for all (*).
[[inputs.win_perf_counters.object]]
# IIS, ASP.NET
ObjectName = "ASP.NET"
Counters = ["Application Restarts","Request Wait Time","Requests Current","Requests Queued","Requests Rejected", "Request Execution Time"]
Instances = ["*"]
Measurement = "win_aspnet"
IncludeTotal=true #Set to true to include _Total instance when querying for all (*).
I can see on the server that the counters are getting written for the ASP.NET
object, but Telegraf is not sending the data to Influx.
Any ideas one what I could look at to troubleshoot this?