mirror of
https://github.com/prometheus-community/windows_exporter
synced 2025-02-17 20:47:31 +00:00
10 lines
157 B
Go
10 lines
157 B
Go
package collector
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func BenchmarkDiskDriveCollector(b *testing.B) {
|
|
benchmarkCollector(b, "disk_drive", newDiskDriveInfoCollector)
|
|
}
|