mirror of
https://github.com/prometheus-community/windows_exporter
synced 2025-03-23 19:38:05 +00:00
11 lines
232 B
Go
11 lines
232 B
Go
|
package collector
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func BenchmarkNETFrameworkNETCLRInteropCollector(b *testing.B) {
|
||
|
// No context name required as collector source is WMI
|
||
|
benchmarkCollector(b, "", NewNETFramework_NETCLRInteropCollector)
|
||
|
}
|