mirror of
https://github.com/prometheus-community/windows_exporter
synced 2025-01-29 02:33:15 +00:00
11 lines
191 B
Go
11 lines
191 B
Go
|
package collector
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func BenchmarkLogonCollector(b *testing.B) {
|
||
|
// No context name required as collector source is WMI
|
||
|
benchmarkCollector(b, "", NewLogonCollector)
|
||
|
}
|