| 
									
										
										
										
											2018-02-23 10:56:08 +01:00
										 |  |  | // Go port of Coda Hale's Metrics library | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2018-02-23 10:56:08 +01:00
										 |  |  | // <https://github.com/rcrowley/go-metrics> | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2018-02-23 10:56:08 +01:00
										 |  |  | // Coda Hale's original work: <https://github.com/codahale/metrics> | 
					
						
							| 
									
										
										
										
											2015-06-27 18:12:58 +03:00
										 |  |  | package metrics | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2015-06-29 16:11:01 +03:00
										 |  |  | 	"os" | 
					
						
							| 
									
										
										
										
											2015-06-27 18:12:58 +03:00
										 |  |  | 	"runtime" | 
					
						
							| 
									
										
										
										
											2015-06-29 16:11:01 +03:00
										 |  |  | 	"strings" | 
					
						
							| 
									
										
										
										
											2015-06-27 18:12:58 +03:00
										 |  |  | 	"time" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-22 14:10:07 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/log" | 
					
						
							| 
									
										
										
										
											2015-06-27 18:12:58 +03:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-23 10:56:08 +01:00
										 |  |  | // 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 bool = false | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-29 16:11:01 +03:00
										 |  |  | // MetricsEnabledFlag is the CLI flag name to use to enable metrics collections. | 
					
						
							| 
									
										
										
										
											2017-08-22 18:35:09 +12:00
										 |  |  | const MetricsEnabledFlag = "metrics" | 
					
						
							| 
									
										
										
										
											2017-11-14 19:34:00 +02:00
										 |  |  | const DashboardEnabledFlag = "dashboard" | 
					
						
							| 
									
										
										
										
											2015-06-29 16:11:01 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | // 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 { | 
					
						
							| 
									
										
										
										
											2017-11-14 19:34:00 +02:00
										 |  |  | 		if flag := strings.TrimLeft(arg, "-"); flag == MetricsEnabledFlag || flag == DashboardEnabledFlag { | 
					
						
							| 
									
										
										
										
											2017-03-03 11:41:52 +02:00
										 |  |  | 			log.Info("Enabling metrics collection") | 
					
						
							| 
									
										
										
										
											2015-07-02 14:13:46 +03:00
										 |  |  | 			Enabled = true | 
					
						
							| 
									
										
										
										
											2015-06-29 16:11:01 +03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-27 18:12:58 +03:00
										 |  |  | // CollectProcessMetrics periodically collects various metrics about the running | 
					
						
							|  |  |  | // process. | 
					
						
							|  |  |  | func CollectProcessMetrics(refresh time.Duration) { | 
					
						
							| 
									
										
										
										
											2015-06-29 16:11:01 +03:00
										 |  |  | 	// Short circuit if the metrics system is disabled | 
					
						
							| 
									
										
										
										
											2015-07-02 14:13:46 +03:00
										 |  |  | 	if !Enabled { | 
					
						
							| 
									
										
										
										
											2015-06-29 16:11:01 +03:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-27 18:12:58 +03:00
										 |  |  | 	// 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 | 
					
						
							| 
									
										
										
										
											2018-02-23 10:56:08 +01:00
										 |  |  | 	memAllocs := GetOrRegisterMeter("system/memory/allocs", DefaultRegistry) | 
					
						
							|  |  |  | 	memFrees := GetOrRegisterMeter("system/memory/frees", DefaultRegistry) | 
					
						
							|  |  |  | 	memInuse := GetOrRegisterMeter("system/memory/inuse", DefaultRegistry) | 
					
						
							|  |  |  | 	memPauses := GetOrRegisterMeter("system/memory/pauses", DefaultRegistry) | 
					
						
							| 
									
										
										
										
											2015-06-27 18:12:58 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-23 10:56:08 +01:00
										 |  |  | 	var diskReads, diskReadBytes, diskWrites, diskWriteBytes Meter | 
					
						
							| 
									
										
										
										
											2015-06-27 18:12:58 +03:00
										 |  |  | 	if err := ReadDiskStats(diskstats[0]); err == nil { | 
					
						
							| 
									
										
										
										
											2018-02-23 10:56:08 +01:00
										 |  |  | 		diskReads = GetOrRegisterMeter("system/disk/readcount", DefaultRegistry) | 
					
						
							|  |  |  | 		diskReadBytes = GetOrRegisterMeter("system/disk/readdata", DefaultRegistry) | 
					
						
							|  |  |  | 		diskWrites = GetOrRegisterMeter("system/disk/writecount", DefaultRegistry) | 
					
						
							|  |  |  | 		diskWriteBytes = GetOrRegisterMeter("system/disk/writedata", DefaultRegistry) | 
					
						
							| 
									
										
										
										
											2015-06-27 18:12:58 +03:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2017-03-03 11:41:52 +02:00
										 |  |  | 		log.Debug("Failed to read disk metrics", "err", err) | 
					
						
							| 
									
										
										
										
											2015-06-27 18:12:58 +03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	// Iterate loading the different stats and updating the meters | 
					
						
							|  |  |  | 	for i := 1; ; i++ { | 
					
						
							|  |  |  | 		runtime.ReadMemStats(memstats[i%2]) | 
					
						
							|  |  |  | 		memAllocs.Mark(int64(memstats[i%2].Mallocs - memstats[(i-1)%2].Mallocs)) | 
					
						
							|  |  |  | 		memFrees.Mark(int64(memstats[i%2].Frees - memstats[(i-1)%2].Frees)) | 
					
						
							|  |  |  | 		memInuse.Mark(int64(memstats[i%2].Alloc - memstats[(i-1)%2].Alloc)) | 
					
						
							|  |  |  | 		memPauses.Mark(int64(memstats[i%2].PauseTotalNs - memstats[(i-1)%2].PauseTotalNs)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if ReadDiskStats(diskstats[i%2]) == nil { | 
					
						
							| 
									
										
										
										
											2017-11-10 18:06:45 +01:00
										 |  |  | 			diskReads.Mark(diskstats[i%2].ReadCount - diskstats[(i-1)%2].ReadCount) | 
					
						
							|  |  |  | 			diskReadBytes.Mark(diskstats[i%2].ReadBytes - diskstats[(i-1)%2].ReadBytes) | 
					
						
							|  |  |  | 			diskWrites.Mark(diskstats[i%2].WriteCount - diskstats[(i-1)%2].WriteCount) | 
					
						
							|  |  |  | 			diskWriteBytes.Mark(diskstats[i%2].WriteBytes - diskstats[(i-1)%2].WriteBytes) | 
					
						
							| 
									
										
										
										
											2015-06-27 18:12:58 +03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		time.Sleep(refresh) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |