Files
windows_exporter/pkg/collector/smb/smb_test.go
Andrey Burtasov 038eede644 added smb collector
Signed-off-by: Andrey Burtasov <BurtasovAA@GSP-I.RU>
2023-11-16 19:30:23 +03:00

13 lines
285 B
Go

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