mirror of
https://github.com/prometheus-community/windows_exporter
synced 2025-03-20 18:13:12 +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)
|
|
}
|