Files
windows_exporter/pkg/collector/updates/updates_test.go
Jan-Otto Kröpke 14910efd4f updates: add windows update collector (#1652)
Signed-off-by: Jan-Otto Kröpke <mail@jkroepke.de>
2024-10-01 23:23:23 +02:00

13 lines
298 B
Go

package updates_test
import (
"testing"
"github.com/prometheus-community/windows_exporter/pkg/collector/updates"
"github.com/prometheus-community/windows_exporter/pkg/testutils"
)
func BenchmarkCollector(b *testing.B) {
testutils.FuncBenchmarkCollector(b, "printer", updates.NewWithFlags)
}