10 lines
141 B
Go
10 lines
141 B
Go
|
package collector
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func BenchmarkRemoteFXCollector(b *testing.B) {
|
||
|
benchmarkCollector(b, "remote_fx", NewRemoteFx)
|
||
|
}
|