Skip to content
Snippets Groups Projects
Select Git revision
  • 8ae294c466bf05f5deb5bab8b215e167f6f5cae7
  • master default protected
  • 1.31
  • 4.28.0
  • 4.27.0
  • 4.26.0
  • 4.25.5
  • 4.25.4
  • 4.25.3
  • 4.25.2
  • 4.25.1
  • 4.25.0
  • 4.24.3
  • 4.24.2
  • 4.24.1
  • 4.24.0
  • 4.23.6
  • 4.23.5
  • 4.23.4
  • 4.23.3
  • 4.23.2
  • 4.23.1
  • 4.23.0
23 results

README.md

Blame
  • job-stat.go 398 B
    package jobqueue
    
    import (
    	"time"
    )
    
    type JobStats struct {
    	RunCount     int `json:"run_count"`
    	SuccessCount int `json:"success_count"`
    	ErrorCount   int `json:"error_count"`
    	TimeMetrics  struct {
    		AvgRunTime   time.Duration `json:"avg"`
    		MaxRunTime   time.Duration `json:"max"`
    		MinRunTime   time.Duration `json:"min"`
    		TotalRunTime time.Duration `json:"total"`
    	} `json:"time_metrics"`
    }