mirror of
https://github.com/prometheus-community/windows_exporter
synced 2025-02-19 13:37:09 +00:00
10 lines
143 B
Go
10 lines
143 B
Go
|
package collector
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func BenchmarkHypervCollector(b *testing.B) {
|
||
|
benchmarkCollector(b, "hyperv", NewHyperVCollector)
|
||
|
}
|