mirror of
https://github.com/Oxalide/vsphere-influxdb-go.git
synced 2023-10-10 13:36:51 +02:00
22 lines
448 B
Go
22 lines
448 B
Go
package monitor
|
|
|
|
import (
|
|
"runtime"
|
|
|
|
"github.com/influxdata/influxdb/monitor/diagnostics"
|
|
)
|
|
|
|
// goRuntime captures Go runtime diagnostics.
|
|
type goRuntime struct{}
|
|
|
|
func (g *goRuntime) Diagnostics() (*diagnostics.Diagnostics, error) {
|
|
d := map[string]interface{}{
|
|
"GOARCH": runtime.GOARCH,
|
|
"GOOS": runtime.GOOS,
|
|
"GOMAXPROCS": runtime.GOMAXPROCS(-1),
|
|
"version": runtime.Version(),
|
|
}
|
|
|
|
return diagnostics.RowFromMap(d), nil
|
|
}
|