60 lines
1.5 KiB
Go
60 lines
1.5 KiB
Go
package metrics
|
|
|
|
import (
|
|
"log"
|
|
|
|
"deevirt.fr/compute/pkg/config"
|
|
"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{"cluster_id", "node_id", "node"},
|
|
nil)
|
|
|
|
libvirtNodeMemoryUsageBytes = prometheus.NewDesc(
|
|
prometheus.BuildFQName("libvirt", "node", "memory_usage_bytes"),
|
|
"Memory usage of the node, in bytes.",
|
|
[]string{"cluster_id", "node_id", "node"},
|
|
nil)
|
|
)
|
|
|
|
func CollectNode(conn *libvirt.Connect, ch chan<- prometheus.Metric, hostname string) error {
|
|
config, err := config.NewConfig()
|
|
if err != nil {
|
|
log.Fatalln(err)
|
|
}
|
|
|
|
nodeCPU, _ := conn.GetCPUStats(int(libvirt.NODE_CPU_STATS_ALL_CPUS), 0) // rate(libvirt_node_cpu_time_seconds_total[10s]) * 100
|
|
nodeMemory, _ := conn.GetMemoryStats(libvirt.NODE_MEMORY_STATS_ALL_CELLS, 0)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
libvirtNodeCPUUsage,
|
|
prometheus.CounterValue,
|
|
float64(nodeCPU.Kernel+nodeCPU.User+nodeCPU.Iowait)/1e9, // From nsec to sec
|
|
config.ClusterID,
|
|
config.NodeID,
|
|
hostname,
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
libvirtNodeMemoryUsageBytes,
|
|
prometheus.GaugeValue,
|
|
float64(nodeMemory.Total-(nodeMemory.Buffers+nodeMemory.Free+nodeMemory.Cached))*1024,
|
|
config.ClusterID,
|
|
config.NodeID,
|
|
hostname,
|
|
)
|
|
|
|
return nil
|
|
}
|
|
|
|
func (e *LibvirtExporter) DescribeNode(ch chan<- *prometheus.Desc) {
|
|
ch <- libvirtNodeCPUUsage
|
|
ch <- libvirtNodeMemoryUsageBytes
|
|
}
|