metrics.go 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. // Copyright 2015 The go-ethereum Authors
  2. // This file is part of the go-ethereum library.
  3. //
  4. // The go-ethereum library is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU Lesser General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // The go-ethereum library is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU Lesser General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Lesser General Public License
  15. // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
  16. // Package metrics provides general system and process level metrics collection.
  17. package metrics
  18. import (
  19. "fmt"
  20. "os"
  21. "runtime"
  22. "strings"
  23. "time"
  24. "github.com/ethereum/go-ethereum/log"
  25. "github.com/rcrowley/go-metrics"
  26. "github.com/rcrowley/go-metrics/exp"
  27. )
  28. // MetricsEnabledFlag is the CLI flag name to use to enable metrics collections.
  29. var MetricsEnabledFlag = "metrics"
  30. // Enabled is the flag specifying if metrics are enable or not.
  31. var Enabled = false
  32. // Init enables or disables the metrics system. Since we need this to run before
  33. // any other code gets to create meters and timers, we'll actually do an ugly hack
  34. // and peek into the command line args for the metrics flag.
  35. func init() {
  36. for _, arg := range os.Args {
  37. if strings.TrimLeft(arg, "-") == MetricsEnabledFlag {
  38. log.Info(fmt.Sprintf("Enabling metrics collection"))
  39. Enabled = true
  40. }
  41. }
  42. exp.Exp(metrics.DefaultRegistry)
  43. }
  44. // NewCounter create a new metrics Counter, either a real one of a NOP stub depending
  45. // on the metrics flag.
  46. func NewCounter(name string) metrics.Counter {
  47. if !Enabled {
  48. return new(metrics.NilCounter)
  49. }
  50. return metrics.GetOrRegisterCounter(name, metrics.DefaultRegistry)
  51. }
  52. // NewMeter create a new metrics Meter, either a real one of a NOP stub depending
  53. // on the metrics flag.
  54. func NewMeter(name string) metrics.Meter {
  55. if !Enabled {
  56. return new(metrics.NilMeter)
  57. }
  58. return metrics.GetOrRegisterMeter(name, metrics.DefaultRegistry)
  59. }
  60. // NewTimer create a new metrics Timer, either a real one of a NOP stub depending
  61. // on the metrics flag.
  62. func NewTimer(name string) metrics.Timer {
  63. if !Enabled {
  64. return new(metrics.NilTimer)
  65. }
  66. return metrics.GetOrRegisterTimer(name, metrics.DefaultRegistry)
  67. }
  68. // CollectProcessMetrics periodically collects various metrics about the running
  69. // process.
  70. func CollectProcessMetrics(refresh time.Duration) {
  71. // Short circuit if the metrics system is disabled
  72. if !Enabled {
  73. return
  74. }
  75. // Create the various data collectors
  76. memstats := make([]*runtime.MemStats, 2)
  77. diskstats := make([]*DiskStats, 2)
  78. for i := 0; i < len(memstats); i++ {
  79. memstats[i] = new(runtime.MemStats)
  80. diskstats[i] = new(DiskStats)
  81. }
  82. // Define the various metrics to collect
  83. memAllocs := metrics.GetOrRegisterMeter("system/memory/allocs", metrics.DefaultRegistry)
  84. memFrees := metrics.GetOrRegisterMeter("system/memory/frees", metrics.DefaultRegistry)
  85. memInuse := metrics.GetOrRegisterMeter("system/memory/inuse", metrics.DefaultRegistry)
  86. memPauses := metrics.GetOrRegisterMeter("system/memory/pauses", metrics.DefaultRegistry)
  87. var diskReads, diskReadBytes, diskWrites, diskWriteBytes metrics.Meter
  88. if err := ReadDiskStats(diskstats[0]); err == nil {
  89. diskReads = metrics.GetOrRegisterMeter("system/disk/readcount", metrics.DefaultRegistry)
  90. diskReadBytes = metrics.GetOrRegisterMeter("system/disk/readdata", metrics.DefaultRegistry)
  91. diskWrites = metrics.GetOrRegisterMeter("system/disk/writecount", metrics.DefaultRegistry)
  92. diskWriteBytes = metrics.GetOrRegisterMeter("system/disk/writedata", metrics.DefaultRegistry)
  93. } else {
  94. log.Debug(fmt.Sprintf("failed to read disk metrics: %v", err))
  95. }
  96. // Iterate loading the different stats and updating the meters
  97. for i := 1; ; i++ {
  98. runtime.ReadMemStats(memstats[i%2])
  99. memAllocs.Mark(int64(memstats[i%2].Mallocs - memstats[(i-1)%2].Mallocs))
  100. memFrees.Mark(int64(memstats[i%2].Frees - memstats[(i-1)%2].Frees))
  101. memInuse.Mark(int64(memstats[i%2].Alloc - memstats[(i-1)%2].Alloc))
  102. memPauses.Mark(int64(memstats[i%2].PauseTotalNs - memstats[(i-1)%2].PauseTotalNs))
  103. if ReadDiskStats(diskstats[i%2]) == nil {
  104. diskReads.Mark(int64(diskstats[i%2].ReadCount - diskstats[(i-1)%2].ReadCount))
  105. diskReadBytes.Mark(int64(diskstats[i%2].ReadBytes - diskstats[(i-1)%2].ReadBytes))
  106. diskWrites.Mark(int64(diskstats[i%2].WriteCount - diskstats[(i-1)%2].WriteCount))
  107. diskWriteBytes.Mark(int64(diskstats[i%2].WriteBytes - diskstats[(i-1)%2].WriteBytes))
  108. }
  109. time.Sleep(refresh)
  110. }
  111. }