NPS(feature): add nps collector

Signed-off-by: rebortg <github@ghlr.de>
This commit is contained in:
rebortg
2023-04-17 16:17:42 +02:00
committed by Ben Reedy
parent d5e8a0ed7e
commit 217b670272
4 changed files with 481 additions and 0 deletions

9
collector/nps_test.go Normal file
View File

@@ -0,0 +1,9 @@
package collector
import (
"testing"
)
func BenchmarkNPSCollector(b *testing.B) {
benchmarkCollector(b, "nps", newNPSCollector)
}