mirror of
https://github.com/prometheus-community/windows_exporter
synced 2025-03-29 14:49:54 +00:00
10 lines
156 B
Go
10 lines
156 B
Go
package collector
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func BenchmarkScheduledTaskCollector(b *testing.B) {
|
|
benchmarkCollector(b, "scheduled_task", NewScheduledTask)
|
|
}
|