mirror of
https://github.com/prometheus-community/windows_exporter.git
synced 2026-02-13 00:16:37 +00:00
Signed-off-by: Tom Powell <t.powell@mwam.com> Added collector for VMware Blast session metrics Signed-off-by: Tom Powell <t.powell@mwam.com> Updating collection logic to handle missing WMI classes Signed-off-by: Tom Powell <t.powell@mwam.com> Updating packet loss metric to gauge Signed-off-by: Tom Powell <t.powell@mwam.com>
10 lines
159 B
Go
10 lines
159 B
Go
package collector
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func BenchmarkVmwareBlastCollector(b *testing.B) {
|
|
benchmarkCollector(b, "vmware_blast", NewVmwareBlastCollector)
|
|
}
|