mirror of
https://github.com/prometheus-community/windows_exporter
synced 2025-02-08 23:58:58 +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)
|
||
|
}
|