mirror of
https://github.com/prometheus-community/windows_exporter.git
synced 2026-02-09 06:26:39 +00:00
12 lines
159 B
Go
12 lines
159 B
Go
package v1
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func BenchmarkQueryPerformanceData(b *testing.B) {
|
|
for n := 0; n < b.N; n++ {
|
|
_, _ = QueryPerformanceData("Global")
|
|
}
|
|
}
|