metrics.go 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. "os"
  20. "runtime"
  21. "strings"
  22. "time"
  23. "github.com/ethereum/go-ethereum/log"
  24. "github.com/rcrowley/go-metrics"
  25. "github.com/rcrowley/go-metrics/exp"
  26. )
  27. // MetricsEnabledFlag is the CLI flag name to use to enable metrics collections.
  28. var MetricsEnabledFlag = "metrics"
  29. // Enabled is the flag specifying if metrics are enable or not.
  30. var Enabled = false
  31. // Init enables or disables the metrics system. Since we need this to run before
  32. // any other code gets to create meters and timers, we'll actually do an ugly hack
  33. // and peek into the command line args for the metrics flag.
  34. func init() {
  35. for _, arg := range os.Args {
  36. if strings.TrimLeft(arg, "-") == MetricsEnabledFlag {
  37. log.Info("Enabling metrics collection")
  38. Enabled = true
  39. }
  40. }
  41. exp.Exp(metrics.DefaultRegistry)
  42. }
  43. // NewCounter create a new metrics Counter, either a real one of a NOP stub depending
  44. // on the metrics flag.
  45. func NewCounter(name string) metrics.Counter {
  46. if !Enabled {
  47. return new(metrics.NilCounter)
  48. }
  49. return metrics.GetOrRegisterCounter(name, metrics.DefaultRegistry)
  50. }
  51. // NewMeter create a new metrics Meter, either a real one of a NOP stub depending
  52. // on the metrics flag.
  53. func NewMeter(name string) metrics.Meter {
  54. if !Enabled {
  55. return new(metrics.NilMeter)
  56. }
  57. return metrics.GetOrRegisterMeter(name, metrics.DefaultRegistry)
  58. }
  59. // NewTimer create a new metrics Timer, either a real one of a NOP stub depending
  60. // on the metrics flag.
  61. func NewTimer(name string) metrics.Timer {
  62. if !Enabled {
  63. return new(metrics.NilTimer)
  64. }
  65. return metrics.GetOrRegisterTimer(name, metrics.DefaultRegistry)
  66. }
  67. // CollectProcessMetrics periodically collects various metrics about the running
  68. // process.
  69. func CollectProcessMetrics(refresh time.Duration) {
  70. // Short circuit if the metrics system is disabled
  71. if !Enabled {
  72. return
  73. }
  74. // Create the various data collectors
  75. memstats := make([]*runtime.MemStats, 2)
  76. diskstats := make([]*DiskStats, 2)
  77. for i := 0; i < len(memstats); i++ {
  78. memstats[i] = new(runtime.MemStats)
  79. diskstats[i] = new(DiskStats)
  80. }
  81. // Define the various metrics to collect
  82. memAllocs := metrics.GetOrRegisterMeter("system/memory/allocs", metrics.DefaultRegistry)
  83. memFrees := metrics.GetOrRegisterMeter("system/memory/frees", metrics.DefaultRegistry)
  84. memInuse := metrics.GetOrRegisterMeter("system/memory/inuse", metrics.DefaultRegistry)
  85. memPauses := metrics.GetOrRegisterMeter("system/memory/pauses", metrics.DefaultRegistry)
  86. var diskReads, diskReadBytes, diskWrites, diskWriteBytes metrics.Meter
  87. if err := ReadDiskStats(diskstats[0]); err == nil {
  88. diskReads = metrics.GetOrRegisterMeter("system/disk/readcount", metrics.DefaultRegistry)
  89. diskReadBytes = metrics.GetOrRegisterMeter("system/disk/readdata", metrics.DefaultRegistry)
  90. diskWrites = metrics.GetOrRegisterMeter("system/disk/writecount", metrics.DefaultRegistry)
  91. diskWriteBytes = metrics.GetOrRegisterMeter("system/disk/writedata", metrics.DefaultRegistry)
  92. } else {
  93. log.Debug("Failed to read disk metrics", "err", err)
  94. }
  95. // Iterate loading the different stats and updating the meters
  96. for i := 1; ; i++ {
  97. runtime.ReadMemStats(memstats[i%2])
  98. memAllocs.Mark(int64(memstats[i%2].Mallocs - memstats[(i-1)%2].Mallocs))
  99. memFrees.Mark(int64(memstats[i%2].Frees - memstats[(i-1)%2].Frees))
  100. memInuse.Mark(int64(memstats[i%2].Alloc - memstats[(i-1)%2].Alloc))
  101. memPauses.Mark(int64(memstats[i%2].PauseTotalNs - memstats[(i-1)%2].PauseTotalNs))
  102. if ReadDiskStats(diskstats[i%2]) == nil {
  103. diskReads.Mark(int64(diskstats[i%2].ReadCount - diskstats[(i-1)%2].ReadCount))
  104. diskReadBytes.Mark(int64(diskstats[i%2].ReadBytes - diskstats[(i-1)%2].ReadBytes))
  105. diskWrites.Mark(int64(diskstats[i%2].WriteCount - diskstats[(i-1)%2].WriteCount))
  106. diskWriteBytes.Mark(int64(diskstats[i%2].WriteBytes - diskstats[(i-1)%2].WriteBytes))
  107. }
  108. time.Sleep(refresh)
  109. }
  110. }