mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-10 07:34:09 -08:00
227 lines
6.7 KiB
Go
227 lines
6.7 KiB
Go
// Copyright 2015 The Prometheus Authors
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
// +build !nosystemd
|
|
|
|
package collector
|
|
|
|
import (
|
|
"fmt"
|
|
"regexp"
|
|
"strings"
|
|
|
|
"github.com/coreos/go-systemd/dbus"
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"github.com/prometheus/common/log"
|
|
"gopkg.in/alecthomas/kingpin.v2"
|
|
)
|
|
|
|
var (
|
|
unitWhitelist = kingpin.Flag("collector.systemd.unit-whitelist", "Regexp of systemd units to whitelist. Units must both match whitelist and not match blacklist to be included.").Default(".+").String()
|
|
unitBlacklist = kingpin.Flag("collector.systemd.unit-blacklist", "Regexp of systemd units to blacklist. Units must both match whitelist and not match blacklist to be included.").Default(".+\\.scope").String()
|
|
systemdPrivate = kingpin.Flag("collector.systemd.private", "Establish a private, direct connection to systemd without dbus.").Bool()
|
|
)
|
|
|
|
type systemdCollector struct {
|
|
unitDesc *prometheus.Desc
|
|
systemRunningDesc *prometheus.Desc
|
|
summaryDesc *prometheus.Desc
|
|
timerLastTriggerDesc *prometheus.Desc
|
|
unitWhitelistPattern *regexp.Regexp
|
|
unitBlacklistPattern *regexp.Regexp
|
|
}
|
|
|
|
var unitStatesName = []string{"active", "activating", "deactivating", "inactive", "failed"}
|
|
|
|
func init() {
|
|
registerCollector("systemd", defaultDisabled, NewSystemdCollector)
|
|
}
|
|
|
|
// NewSystemdCollector returns a new Collector exposing systemd statistics.
|
|
func NewSystemdCollector() (Collector, error) {
|
|
const subsystem = "systemd"
|
|
|
|
unitDesc := prometheus.NewDesc(
|
|
prometheus.BuildFQName(namespace, subsystem, "unit_state"),
|
|
"Systemd unit", []string{"name", "state"}, nil,
|
|
)
|
|
systemRunningDesc := prometheus.NewDesc(
|
|
prometheus.BuildFQName(namespace, subsystem, "system_running"),
|
|
"Whether the system is operational (see 'systemctl is-system-running')",
|
|
nil, nil,
|
|
)
|
|
summaryDesc := prometheus.NewDesc(
|
|
prometheus.BuildFQName(namespace, subsystem, "units"),
|
|
"Summary of systemd unit states", []string{"state"}, nil)
|
|
timerLastTriggerDesc := prometheus.NewDesc(
|
|
prometheus.BuildFQName(namespace, subsystem, "timer_last_trigger_seconds"),
|
|
"Seconds since epoch of last trigger.", []string{"name"}, nil)
|
|
unitWhitelistPattern := regexp.MustCompile(fmt.Sprintf("^(?:%s)$", *unitWhitelist))
|
|
unitBlacklistPattern := regexp.MustCompile(fmt.Sprintf("^(?:%s)$", *unitBlacklist))
|
|
|
|
return &systemdCollector{
|
|
unitDesc: unitDesc,
|
|
systemRunningDesc: systemRunningDesc,
|
|
summaryDesc: summaryDesc,
|
|
timerLastTriggerDesc: timerLastTriggerDesc,
|
|
unitWhitelistPattern: unitWhitelistPattern,
|
|
unitBlacklistPattern: unitBlacklistPattern,
|
|
}, nil
|
|
}
|
|
|
|
func (c *systemdCollector) Update(ch chan<- prometheus.Metric) error {
|
|
allUnits, err := c.getAllUnits()
|
|
if err != nil {
|
|
return fmt.Errorf("couldn't get units: %s", err)
|
|
}
|
|
|
|
summary := summarizeUnits(allUnits)
|
|
c.collectSummaryMetrics(ch, summary)
|
|
|
|
units := filterUnits(allUnits, c.unitWhitelistPattern, c.unitBlacklistPattern)
|
|
c.collectUnitStatusMetrics(ch, units)
|
|
c.collectTimers(ch, units)
|
|
|
|
systemState, err := c.getSystemState()
|
|
if err != nil {
|
|
return fmt.Errorf("couldn't get system state: %s", err)
|
|
}
|
|
c.collectSystemState(ch, systemState)
|
|
|
|
return nil
|
|
}
|
|
|
|
func (c *systemdCollector) collectUnitStatusMetrics(ch chan<- prometheus.Metric, units []unit) {
|
|
for _, unit := range units {
|
|
for _, stateName := range unitStatesName {
|
|
isActive := 0.0
|
|
if stateName == unit.ActiveState {
|
|
isActive = 1.0
|
|
}
|
|
ch <- prometheus.MustNewConstMetric(
|
|
c.unitDesc, prometheus.GaugeValue, isActive,
|
|
unit.Name, stateName)
|
|
}
|
|
}
|
|
}
|
|
|
|
func (c *systemdCollector) collectTimers(ch chan<- prometheus.Metric, units []unit) error {
|
|
for _, unit := range units {
|
|
if !strings.HasSuffix(unit.Name, ".timer") {
|
|
continue
|
|
}
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
c.timerLastTriggerDesc, prometheus.GaugeValue,
|
|
float64(unit.lastTriggerUsec)/1e6, unit.Name)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (c *systemdCollector) collectSummaryMetrics(ch chan<- prometheus.Metric, summary map[string]float64) {
|
|
for stateName, count := range summary {
|
|
ch <- prometheus.MustNewConstMetric(
|
|
c.summaryDesc, prometheus.GaugeValue, count, stateName)
|
|
}
|
|
}
|
|
|
|
func (c *systemdCollector) collectSystemState(ch chan<- prometheus.Metric, systemState string) {
|
|
isSystemRunning := 0.0
|
|
if systemState == `"running"` {
|
|
isSystemRunning = 1.0
|
|
}
|
|
ch <- prometheus.MustNewConstMetric(c.systemRunningDesc, prometheus.GaugeValue, isSystemRunning)
|
|
}
|
|
|
|
func (c *systemdCollector) newDbus() (*dbus.Conn, error) {
|
|
if *systemdPrivate {
|
|
return dbus.NewSystemdConnection()
|
|
}
|
|
return dbus.New()
|
|
}
|
|
|
|
type unit struct {
|
|
dbus.UnitStatus
|
|
lastTriggerUsec uint64
|
|
}
|
|
|
|
func (c *systemdCollector) getAllUnits() ([]unit, error) {
|
|
conn, err := c.newDbus()
|
|
if err != nil {
|
|
return nil, fmt.Errorf("couldn't get dbus connection: %s", err)
|
|
}
|
|
defer conn.Close()
|
|
|
|
allUnits, err := conn.ListUnits()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
result := make([]unit, 0, len(allUnits))
|
|
for _, status := range allUnits {
|
|
unit := unit{
|
|
UnitStatus: status,
|
|
}
|
|
|
|
if strings.HasSuffix(unit.Name, ".timer") {
|
|
lastTriggerValue, err := conn.GetUnitTypeProperty(unit.Name, "Timer", "LastTriggerUSec")
|
|
if err != nil {
|
|
return nil, fmt.Errorf("couldn't get unit '%s' LastTriggerUSec: %s", unit.Name, err)
|
|
}
|
|
|
|
unit.lastTriggerUsec = lastTriggerValue.Value.Value().(uint64)
|
|
}
|
|
|
|
result = append(result, unit)
|
|
}
|
|
|
|
return result, nil
|
|
}
|
|
|
|
func summarizeUnits(units []unit) map[string]float64 {
|
|
summarized := make(map[string]float64)
|
|
|
|
for _, unitStateName := range unitStatesName {
|
|
summarized[unitStateName] = 0.0
|
|
}
|
|
|
|
for _, unit := range units {
|
|
summarized[unit.ActiveState] += 1.0
|
|
}
|
|
|
|
return summarized
|
|
}
|
|
|
|
func filterUnits(units []unit, whitelistPattern, blacklistPattern *regexp.Regexp) []unit {
|
|
filtered := make([]unit, 0, len(units))
|
|
for _, unit := range units {
|
|
if whitelistPattern.MatchString(unit.Name) && !blacklistPattern.MatchString(unit.Name) {
|
|
filtered = append(filtered, unit)
|
|
} else {
|
|
log.Debugf("Ignoring unit: %s", unit.Name)
|
|
}
|
|
}
|
|
|
|
return filtered
|
|
}
|
|
|
|
func (c *systemdCollector) getSystemState() (state string, err error) {
|
|
conn, err := c.newDbus()
|
|
if err != nil {
|
|
return "", fmt.Errorf("couldn't get dbus connection: %s", err)
|
|
}
|
|
state, err = conn.GetManagerProperty("SystemState")
|
|
conn.Close()
|
|
return state, err
|
|
}
|