mirror of
https://github.com/prometheus-community/windows_exporter
synced 2025-03-23 03:17:42 +00:00
10 lines
137 B
Go
10 lines
137 B
Go
|
package collector
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func BenchmarkTimeCollector(b *testing.B) {
|
||
|
benchmarkCollector(b, "time", newTimeCollector)
|
||
|
}
|