mirror of
https://github.com/prometheus-community/windows_exporter.git
synced 2026-02-15 17:36:34 +00:00
Signed-off-by: Jan-Otto Kröpke <mail@jkroepke.de> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
12 lines
157 B
Go
12 lines
157 B
Go
package registry
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func BenchmarkQueryPerformanceData(b *testing.B) {
|
|
for b.Loop() {
|
|
_, _ = QueryPerformanceData("Global", "")
|
|
}
|
|
}
|