aboutsummaryrefslogtreecommitdiffstats
path: root/metrics/metrics.go
blob: 98e8ced25cdb595040847e10098aeef09d475ec0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
// Go port of Coda Hale's Metrics library
//
// <https://github.com/rcrowley/go-metrics>
//
// Coda Hale's original work: <https://github.com/codahale/metrics>
package metrics

import (
    "os"
    "runtime"
    "strings"
    "time"

    "github.com/ethereum/go-ethereum/log"
)

// Enabled is checked by the constructor functions for all of the
// standard metrics. If it is true, the metric returned is a stub.
//
// This global kill-switch helps quantify the observer effect and makes
// for less cluttered pprof profiles.
var Enabled = false

// EnabledExpensive is a soft-flag meant for external packages to check if costly
// metrics gathering is allowed or not. The goal is to separate standard metrics
// for health monitoring and debug metrics that might impact runtime performance.
var EnabledExpensive = false

// enablerFlags is the CLI flag names to use to enable metrics collections.
var enablerFlags = []string{"metrics", "dashboard"}

// expensiveEnablerFlags is the CLI flag names to use to enable metrics collections.
var expensiveEnablerFlags = []string{"metrics.expensive"}

// Init enables or disables the metrics system. Since we need this to run before
// any other code gets to create meters and timers, we'll actually do an ugly hack
// and peek into the command line args for the metrics flag.
func init() {
    for _, arg := range os.Args {
        flag := strings.TrimLeft(arg, "-")

        for _, enabler := range enablerFlags {
            if !Enabled && flag == enabler {
                log.Info("Enabling metrics collection")
                Enabled = true
            }
        }
        for _, enabler := range expensiveEnablerFlags {
            if !EnabledExpensive && flag == enabler {
                log.Info("Enabling expensive metrics collection")
                EnabledExpensive = true
            }
        }
    }
}

// CollectProcessMetrics periodically collects various metrics about the running
// process.
func CollectProcessMetrics(refresh time.Duration) {
    // Short circuit if the metrics system is disabled
    if !Enabled {
        return
    }
    refreshFreq := int64(refresh / time.Second)

    // Create the various data collectors
    cpuStats := make([]*CPUStats, 2)
    memstats := make([]*runtime.MemStats, 2)
    diskstats := make([]*DiskStats, 2)
    for i := 0; i < len(memstats); i++ {
        cpuStats[i] = new(CPUStats)
        memstats[i] = new(runtime.MemStats)
        diskstats[i] = new(DiskStats)
    }
    // Define the various metrics to collect
    cpuSysLoad := GetOrRegisterGauge("system/cpu/sysload", DefaultRegistry)
    cpuSysWait := GetOrRegisterGauge("system/cpu/syswait", DefaultRegistry)
    cpuProcLoad := GetOrRegisterGauge("system/cpu/procload", DefaultRegistry)

    memPauses := GetOrRegisterMeter("system/memory/pauses", DefaultRegistry)
    memAllocs := GetOrRegisterMeter("system/memory/allocs", DefaultRegistry)
    memFrees := GetOrRegisterMeter("system/memory/frees", DefaultRegistry)
    memHeld := GetOrRegisterGauge("system/memory/held", DefaultRegistry)
    memUsed := GetOrRegisterGauge("system/memory/used", DefaultRegistry)

    var diskReads, diskReadBytes, diskWrites, diskWriteBytes Meter
    var diskReadBytesCounter, diskWriteBytesCounter Counter
    if err := ReadDiskStats(diskstats[0]); err == nil {
        diskReads = GetOrRegisterMeter("system/disk/readcount", DefaultRegistry)
        diskReadBytes = GetOrRegisterMeter("system/disk/readdata", DefaultRegistry)
        diskReadBytesCounter = GetOrRegisterCounter("system/disk/readbytes", DefaultRegistry)
        diskWrites = GetOrRegisterMeter("system/disk/writecount", DefaultRegistry)
        diskWriteBytes = GetOrRegisterMeter("system/disk/writedata", DefaultRegistry)
        diskWriteBytesCounter = GetOrRegisterCounter("system/disk/writebytes", DefaultRegistry)
    } else {
        log.Debug("Failed to read disk metrics", "err", err)
    }
    // Iterate loading the different stats and updating the meters
    for i := 1; ; i++ {
        location1 := i % 2
        location2 := (i - 1) % 2

        ReadCPUStats(cpuStats[location1])
        cpuSysLoad.Update((cpuStats[location1].GlobalTime - cpuStats[location2].GlobalTime) / refreshFreq)
        cpuSysWait.Update((cpuStats[location1].GlobalWait - cpuStats[location2].GlobalWait) / refreshFreq)
        cpuProcLoad.Update((cpuStats[location1].LocalTime - cpuStats[location2].LocalTime) / refreshFreq)

        runtime.ReadMemStats(memstats[location1])
        memPauses.Mark(int64(memstats[location1].PauseTotalNs - memstats[location2].PauseTotalNs))
        memAllocs.Mark(int64(memstats[location1].Mallocs - memstats[location2].Mallocs))
        memFrees.Mark(int64(memstats[location1].Frees - memstats[location2].Frees))
        memHeld.Update(int64(memstats[location1].HeapSys - memstats[location1].HeapReleased))
        memUsed.Update(int64(memstats[location1].Alloc))

        if ReadDiskStats(diskstats[location1]) == nil {
            diskReads.Mark(diskstats[location1].ReadCount - diskstats[location2].ReadCount)
            diskReadBytes.Mark(diskstats[location1].ReadBytes - diskstats[location2].ReadBytes)
            diskWrites.Mark(diskstats[location1].WriteCount - diskstats[location2].WriteCount)
            diskWriteBytes.Mark(diskstats[location1].WriteBytes - diskstats[location2].WriteBytes)

            diskReadBytesCounter.Inc(diskstats[location1].ReadBytes - diskstats[location2].ReadBytes)
            diskWriteBytesCounter.Inc(diskstats[location1].WriteBytes - diskstats[location2].WriteBytes)
        }
        time.Sleep(refresh)
    }
}