mirror of
https://github.com/prometheus-community/windows_exporter
synced 2025-01-29 18:53:06 +00:00
0711268d3c
Signed-off-by: Jan-Otto Kröpke <mail@jkroepke.de>
14 lines
345 B
Go
14 lines
345 B
Go
package msmq_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prometheus-community/windows_exporter/pkg/collector/msmq"
|
|
"github.com/prometheus-community/windows_exporter/pkg/testutils"
|
|
)
|
|
|
|
func BenchmarkCollector(b *testing.B) {
|
|
// No context name required as collector source is WMI
|
|
testutils.FuncBenchmarkCollector(b, msmq.Name, msmq.NewWithFlags)
|
|
}
|