Files
windows_exporter/internal/perflib/perflib_test.go
2024-10-03 20:23:56 +02:00

12 lines
164 B
Go

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