metrics.go 4.27 KB
Newer Older
1
// Go port of Coda Hale's Metrics library
2
//
3
// <https://github.com/rcrowley/go-metrics>
4
//
5
// Coda Hale's original work: <https://github.com/codahale/metrics>
6 7 8
package metrics

import (
9
	"os"
10
	"runtime"
11
	"strings"
12 13
	"time"

14
	"github.com/ethereum/go-ethereum/log"
15 16
)

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

24 25 26 27 28 29 30 31 32 33
// 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"}
34 35 36 37 38 39

// 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 {
40 41 42 43 44 45 46 47 48
		flag := strings.TrimLeft(arg, "-")

		for _, enabler := range enablerFlags {
			if !Enabled && flag == enabler {
				log.Info("Enabling metrics collection")
				Enabled = true
			}
		}
		for _, enabler := range expensiveEnablerFlags {
49
			if !EnabledExpensive && flag == enabler {
50 51 52
				log.Info("Enabling expensive metrics collection")
				EnabledExpensive = true
			}
53 54 55 56
		}
	}
}

57 58 59
// CollectProcessMetrics periodically collects various metrics about the running
// process.
func CollectProcessMetrics(refresh time.Duration) {
60
	// Short circuit if the metrics system is disabled
61
	if !Enabled {
62 63
		return
	}
64 65 66 67 68 69 70 71
	// Create the various data collectors
	memstats := make([]*runtime.MemStats, 2)
	diskstats := make([]*DiskStats, 2)
	for i := 0; i < len(memstats); i++ {
		memstats[i] = new(runtime.MemStats)
		diskstats[i] = new(DiskStats)
	}
	// Define the various metrics to collect
72 73 74 75
	memAllocs := GetOrRegisterMeter("system/memory/allocs", DefaultRegistry)
	memFrees := GetOrRegisterMeter("system/memory/frees", DefaultRegistry)
	memInuse := GetOrRegisterMeter("system/memory/inuse", DefaultRegistry)
	memPauses := GetOrRegisterMeter("system/memory/pauses", DefaultRegistry)
76

77
	var diskReads, diskReadBytes, diskWrites, diskWriteBytes Meter
78
	var diskReadBytesCounter, diskWriteBytesCounter Counter
79
	if err := ReadDiskStats(diskstats[0]); err == nil {
80 81
		diskReads = GetOrRegisterMeter("system/disk/readcount", DefaultRegistry)
		diskReadBytes = GetOrRegisterMeter("system/disk/readdata", DefaultRegistry)
82
		diskReadBytesCounter = GetOrRegisterCounter("system/disk/readbytes", DefaultRegistry)
83 84
		diskWrites = GetOrRegisterMeter("system/disk/writecount", DefaultRegistry)
		diskWriteBytes = GetOrRegisterMeter("system/disk/writedata", DefaultRegistry)
85
		diskWriteBytesCounter = GetOrRegisterCounter("system/disk/writebytes", DefaultRegistry)
86
	} else {
87
		log.Debug("Failed to read disk metrics", "err", err)
88 89 90
	}
	// Iterate loading the different stats and updating the meters
	for i := 1; ; i++ {
91 92
		location1 := i % 2
		location2 := (i - 1) % 2
93

94 95 96 97 98 99 100 101 102 103 104
		runtime.ReadMemStats(memstats[location1])
		memAllocs.Mark(int64(memstats[location1].Mallocs - memstats[location2].Mallocs))
		memFrees.Mark(int64(memstats[location1].Frees - memstats[location2].Frees))
		memInuse.Mark(int64(memstats[location1].Alloc - memstats[location2].Alloc))
		memPauses.Mark(int64(memstats[location1].PauseTotalNs - memstats[location2].PauseTotalNs))

		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)
105 106 107

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