windows_exporter/tools/collector-generator
Shubham Goel 285a165eba
Fixed bug in script
There was an extra parenthesis at the end of line no 23
2020-02-24 10:21:58 +05:30
..
New-Collector.ps1 Fixed bug in script 2020-02-24 10:21:58 +05:30
README.md Add a collector generator script 2016-09-24 20:55:40 +02:00
collector.template Update generator template 2019-08-03 15:10:27 +02:00
generate-collector.go Lint-fix: varcheck 2019-01-23 09:56:24 +01:00

README.md

Collector generator

Generates a collector skeleton implementation from a WMI class.

Usage

Build the generator:

go build .

Run the script to query the WMI service and send the output to the generator:

.\New-Collector.ps1 -Class Win32_PerfRawData_PerfOS_Processor

This will generate a collector. The collector name is generated by first removing Win32_PerfRawData_Perf and lower-casing, so Win32_PerfRawData_PerfOS_Processor will generate os_processor.go. This can be overridden by passing -CollectorName to the script.