mirror of
https://github.com/prometheus-community/windows_exporter
synced 2025-01-21 23:03:41 +00:00
10 lines
143 B
Go
10 lines
143 B
Go
|
package collector
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func BenchmarkSystemCollector(b *testing.B) {
|
||
|
benchmarkCollector(b, "system", NewSystemCollector)
|
||
|
}
|