Hello
on windows performance counter there is “User Input Delay per Process” that allow to evaluate reactivity response on process.
i collect them and treat the data, using processors.regex.tags to clean up the data
the instance come like that “1:4568 <EXCEL.EXE>”
and i look for having only “EXCEL”
but it seems that it’s not processing all the time
[[inputs.win_perf_counters]]
metricpass = "fields.Max_Input_Delay > 0"
[[inputs.win_perf_counters.object]]
ObjectName = "User Input Delay per Session"
Instances = ["*"]
Counters = ["Max Input Delay"]
Measurement = "user_input_delay_per_session"
[[inputs.win_perf_counters.object]]
ObjectName = "User Input Delay per Process"
Instances = ["*"]
Counters = ["Max Input Delay"]
Measurement = "user_input_delay_per_process"
[[processors.regex]]
namepass = ["user_input_delay_per_process"]
[[processors.regex.tags]]
key = "instance"
pattern = '.+\<(.+)\.(exe|EXE|scr|SCR)\>$'
replacement = "${1}"
any idea?