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