mirror of
https://github.com/prometheus-community/windows_exporter
synced 2025-02-18 04:57:20 +00:00
Collector builder functions are only used internally in the `collector` package, and shouldn't needlessly be exposed as part of the package API to downstream clients. Signed-off-by: Ben Reedy <breed808@breed808.com>
11 lines
232 B
Go
11 lines
232 B
Go
package collector
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func BenchmarkNETFrameworkNETCLRLoadingCollector(b *testing.B) {
|
|
// No context name required as collector source is WMI
|
|
benchmarkCollector(b, "", newNETFramework_NETCLRLoadingCollector)
|
|
}
|