package metrics import ( "github.com/prometheus/client_golang/prometheus" "libvirt.org/go/libvirt" ) var ( // Compute libvirtNodeCPUUsage = prometheus.NewDesc( prometheus.BuildFQName("libvirt", "node", "cpu_time_seconds_total"), "CPU usage of node", []string{"hostname"}, nil) libvirtNodeCPUTotal = prometheus.NewDesc( prometheus.BuildFQName("libvirt", "node", "cpu_threads"), "CPU usage of node", []string{"hostname"}, nil) libvirtNodeMemoryUsageBytes = prometheus.NewDesc( prometheus.BuildFQName("libvirt", "node", "memory_usage_bytes"), "Memory usage of the node, in bytes.", []string{"hostname"}, nil) libvirtNodeMemoryAvailableBytes = prometheus.NewDesc( prometheus.BuildFQName("libvirt", "node", "memory_available_bytes"), "Memory available of the node, in bytes.", []string{"hostname"}, nil) libvirtNodeMemoryTotalBytes = prometheus.NewDesc( prometheus.BuildFQName("libvirt", "node", "memory_total_bytes"), "Memory total of the node, in bytes.", []string{"hostname"}, nil) ) /*type AvgStat struct { Load1 float64 Load5 float64 Load15 float64 } func sysinfoAvgWithContext() (*AvgStat, error) { var info syscall.Sysinfo_t err := syscall.Sysinfo(&info) if err != nil { return nil, err } const si_load_shift = 16 return &AvgStat{ Load1: float64(info.Loads[0]) / float64(1<