mirror of
https://github.com/prometheus-community/windows_exporter.git
synced 2026-02-08 22:16:38 +00:00
10 lines
150 B
Go
10 lines
150 B
Go
package registry
|
|
|
|
import (
|
|
"strconv"
|
|
)
|
|
|
|
func MapCounterToIndex(name string) string {
|
|
return strconv.Itoa(int(CounterNameTable.LookupIndex(name)))
|
|
}
|