10 lines
159 B
Go
10 lines
159 B
Go
|
package collector
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func BenchmarkContainerCollector(b *testing.B) {
|
||
|
benchmarkCollector(b, "container", NewContainerMetricsCollector)
|
||
|
}
|