Adding Teradici PCoIP session metrics collection

Signed-off-by: Tom Powell <t.powell@mwam.com>

Added collector for VMware Blast session metrics

Signed-off-by: Tom Powell <t.powell@mwam.com>

Updating collection logic to handle missing WMI classes

Signed-off-by: Tom Powell <t.powell@mwam.com>

Updating packet loss metric to gauge

Signed-off-by: Tom Powell <t.powell@mwam.com>
This commit is contained in:
Tom Powell
2022-03-30 09:45:02 +01:00
committed by Tom Powell
parent ca15e2c70d
commit dde839b66d
7 changed files with 2143 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package collector
import (
"testing"
)
func BenchmarkVmwareBlastCollector(b *testing.B) {
benchmarkCollector(b, "vmware_blast", NewVmwareBlastCollector)
}