mirror of
https://github.com/prometheus-community/windows_exporter
synced 2025-01-01 19:32:03 +00:00
10 lines
174 B
Go
10 lines
174 B
Go
|
package collector
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func BenchmarkTerminalServicesCollector(b *testing.B) {
|
||
|
benchmarkCollector(b, "terminal_services", NewTerminalServicesCollector)
|
||
|
}
|