Skip to content
Snippets Groups Projects
Select Git revision
  • 4836c9d1ea88e0a66e0bf5ea692f870f5381166c
  • master default protected
  • v1.22.9
  • v1.22.8
  • v1.22.7
  • v1.22.6
  • v1.22.5
  • v1.22.4
  • v1.22.3
  • v1.22.1
  • v1.22.0
  • v1.21.0
  • v1.20.5
  • v1.20.4
  • v1.20.3
  • v1.20.2
  • v1.20.1
  • v1.20.0
  • v1.19.0
  • v1.18.3
  • v1.18.2
  • v1.18.1
22 results

build-cover-report.nix

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"`
    }