Is there a way to filter out Windows counters we don't care about to save license usage?
As an example, I don't want % C1 Time; % C2 Time; AND % C3 Time; indexed.
Or is it an all or nothing type of thing with Windows CPU ?
[perfmon://CPU]
counters = % Processor Time; % User Time; % Privileged Time; Interrupts/sec; % DPC Time; % Interrupt Time; DPCs Queued/sec; DPC Rate; % Idle Time; **% C1 Time; % C2 Time; % C3 Time;** C1 Transitions/sec; C2 Transitions/sec; C3 Transitions/sec
disabled = 0
instances = *
interval = 120
object = Processor
useEnglishOnly=true
index = perfmon
sure thing,
remove them from the inputs stanza
[perfmon://CPU]
counters = % Processor Time; % User Time; % Privileged Time; Interrupts/sec; % DPC Time; % Interrupt Time; DPCs Queued/sec; DPC Rate; % Idle Time; C1 Transitions/sec; C2 Transitions/sec; C3 Transitions/sec
disabled = 0
instances = *
interval = 120
object = Processor
useEnglishOnly=true
index = perfmon
you can consider the interval as well
hope it helps