Skip to content
Snippets Groups Projects
Select Git revision
  • 892f9f49f05a656b7a441d4a4ef650759c4f1ef2
  • main default protected
  • py2-backport
  • tags/release-0.5_final
  • tags/release-0.4_final
  • tags/release-0.4_r2
  • tags/release-0.3
7 results

README.rst

Blame
  • parameters.go 378 B
    package metrics
    
    import "time"
    
    const (
    	// should always be 1 second
    	MPSMeasurementInterval = 1 * time.Second
    	TPSMeasurementInterval = 1 * time.Second
    	// can be adjusted as wished
    	ValueTipsMeasurementInterval = 1 * time.Second
    	CPUUsageMeasurementInterval  = 1 * time.Second
    	MemUsageMeasurementInterval  = 1 * time.Second
    	SyncedMeasurementInterval    = 1 * time.Second
    )