Telegraf: Input - Windows Performance Counters: Unterschied zwischen den Versionen
Aus Wiki-WebPerfect
Admin (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „ == Error == '''E! [telegraf] Error running agent: Error loading config file <PATH_TO_YOUR_CONFIG>.conf: Error parsing data: line x: table `inputs.win_perf_co…“) |
Admin (Diskussion | Beiträge) |
||
Zeile 6: | Zeile 6: | ||
== Cause == | == Cause == | ||
− | ''This is because of an syntax error. You will setting two different tags on the same win_perf_stanza ([[inputs.win_perf_counters]]).'' <br> | + | ''This is because of an syntax error. You will setting two different tags on the same win_perf_stanza (<code>[[inputs.win_perf_counters]]</code>).'' <br> |
''In the Telegraf input plugin "win_perf_counters" you cannot set the tags under the [[inputs.win_perf_counters.'''object''']] stanza.'' <br> | ''In the Telegraf input plugin "win_perf_counters" you cannot set the tags under the [[inputs.win_perf_counters.'''object''']] stanza.'' <br> | ||
''You have to set the tags under the [[inputs.win_perf_counters]] stanza and cannot define it twice like the following image:'' <br> | ''You have to set the tags under the [[inputs.win_perf_counters]] stanza and cannot define it twice like the following image:'' <br> |
Version vom 8. Februar 2022, 08:46 Uhr
Error
E! [telegraf] Error running agent: Error loading config file <PATH_TO_YOUR_CONFIG>.conf: Error parsing data: line x: table `inputs.win_perf_counters.tags' is in conflict with table in line x
Cause
This is because of an syntax error. You will setting two different tags on the same win_perf_stanza (inputs.win_perf_counters
).
In the Telegraf input plugin "win_perf_counters" you cannot set the tags under the inputs.win_perf_counters.'''object''' stanza.
You have to set the tags under the inputs.win_perf_counters stanza and cannot define it twice like the following image:
Solution
- Create a new inputs.win_perf_counters stanza foreach input that should have different tags. Like this:
inputs.win_perf_counters.object ObjectName = "Hyper-V Hypervisor Virtual Processor" Instances = ["*"] Counters = [ "Hypercalls/sec", ] Measurement = "hyperv_vm_hypercalls_demo"
[inputs.win_perf_counters.tags]
TestTag = "testvalue1"
inputs.win_perf_counters.object ObjectName = "Hyper-V Hypervisor Virtual Processor" Instances = ["*"] Counters = [ "Hypercalls/sec", ] Measurement = "hyperv_vm_hypercalls_demo"
[inputs.win_perf_counters.tags]
TestTag = "testvalue2"