metrics.go 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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/logger"
  24. "github.com/ethereum/go-ethereum/logger/glog"
  25. "github.com/rcrowley/go-metrics"
  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. glog.V(logger.Info).Infof("Enabling metrics collection")
  38. Enabled = true
  39. }
  40. }
  41. }
  42. // NewMeter create a new metrics Meter, either a real one of a NOP stub depending
  43. // on the metrics flag.
  44. func NewMeter(name string) metrics.Meter {
  45. if !Enabled {
  46. return new(metrics.NilMeter)
  47. }
  48. return metrics.GetOrRegisterMeter(name, metrics.DefaultRegistry)
  49. }
  50. // NewTimer create a new metrics Timer, either a real one of a NOP stub depending
  51. // on the metrics flag.
  52. func NewTimer(name string) metrics.Timer {
  53. if !Enabled {
  54. return new(metrics.NilTimer)
  55. }
  56. return metrics.GetOrRegisterTimer(name, metrics.DefaultRegistry)
  57. }
  58. // CollectProcessMetrics periodically collects various metrics about the running
  59. // process.
  60. func CollectProcessMetrics(refresh time.Duration) {
  61. // Short circuit if the metrics system is disabled
  62. if !Enabled {
  63. return
  64. }
  65. // Create the various data collectors
  66. memstats := make([]*runtime.MemStats, 2)
  67. diskstats := make([]*DiskStats, 2)
  68. for i := 0; i < len(memstats); i++ {
  69. memstats[i] = new(runtime.MemStats)
  70. diskstats[i] = new(DiskStats)
  71. }
  72. // Define the various metrics to collect
  73. memAllocs := metrics.GetOrRegisterMeter("system/memory/allocs", metrics.DefaultRegistry)
  74. memFrees := metrics.GetOrRegisterMeter("system/memory/frees", metrics.DefaultRegistry)
  75. memInuse := metrics.GetOrRegisterMeter("system/memory/inuse", metrics.DefaultRegistry)
  76. memPauses := metrics.GetOrRegisterMeter("system/memory/pauses", metrics.DefaultRegistry)
  77. var diskReads, diskReadBytes, diskWrites, diskWriteBytes metrics.Meter
  78. if err := ReadDiskStats(diskstats[0]); err == nil {
  79. diskReads = metrics.GetOrRegisterMeter("system/disk/readcount", metrics.DefaultRegistry)
  80. diskReadBytes = metrics.GetOrRegisterMeter("system/disk/readdata", metrics.DefaultRegistry)
  81. diskWrites = metrics.GetOrRegisterMeter("system/disk/writecount", metrics.DefaultRegistry)
  82. diskWriteBytes = metrics.GetOrRegisterMeter("system/disk/writedata", metrics.DefaultRegistry)
  83. } else {
  84. glog.V(logger.Debug).Infof("failed to read disk metrics: %v", err)
  85. }
  86. // Iterate loading the different stats and updating the meters
  87. for i := 1; ; i++ {
  88. runtime.ReadMemStats(memstats[i%2])
  89. memAllocs.Mark(int64(memstats[i%2].Mallocs - memstats[(i-1)%2].Mallocs))
  90. memFrees.Mark(int64(memstats[i%2].Frees - memstats[(i-1)%2].Frees))
  91. memInuse.Mark(int64(memstats[i%2].Alloc - memstats[(i-1)%2].Alloc))
  92. memPauses.Mark(int64(memstats[i%2].PauseTotalNs - memstats[(i-1)%2].PauseTotalNs))
  93. if ReadDiskStats(diskstats[i%2]) == nil {
  94. diskReads.Mark(int64(diskstats[i%2].ReadCount - diskstats[(i-1)%2].ReadCount))
  95. diskReadBytes.Mark(int64(diskstats[i%2].ReadBytes - diskstats[(i-1)%2].ReadBytes))
  96. diskWrites.Mark(int64(diskstats[i%2].WriteCount - diskstats[(i-1)%2].WriteCount))
  97. diskWriteBytes.Mark(int64(diskstats[i%2].WriteBytes - diskstats[(i-1)%2].WriteBytes))
  98. }
  99. time.Sleep(refresh)
  100. }
  101. }