Files
windows_exporter/internal/perfdata/v1/perflib_test.go
2024-10-11 00:18:36 +02:00

12 lines
163 B
Go

package v1
import (
"testing"
)
func BenchmarkQueryPerformanceData(b *testing.B) {
for n := 0; n < b.N; n++ {
_, _ = QueryPerformanceData("Global", "")
}
}