mirror of
https://github.com/prometheus-community/windows_exporter
synced 2025-01-09 07:50:10 +00:00
14 lines
355 B
Go
14 lines
355 B
Go
package msmq_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prometheus-community/windows_exporter/internal/collector/msmq"
|
|
"github.com/prometheus-community/windows_exporter/internal/testutils"
|
|
)
|
|
|
|
func BenchmarkCollector(b *testing.B) {
|
|
// No context name required as Collector source is WMI
|
|
testutils.FuncBenchmarkCollector(b, msmq.Name, msmq.NewWithFlags)
|
|
}
|