stats.go 385 B

123456789101112131415161718192021
  1. package lint
  2. const (
  3. StateInitializing = 0
  4. StateGraph = 1
  5. StateProcessing = 2
  6. StateCumulative = 3
  7. )
  8. type Stats struct {
  9. State uint32
  10. InitialPackages uint32
  11. TotalPackages uint32
  12. ProcessedPackages uint32
  13. ProcessedInitialPackages uint32
  14. Problems uint32
  15. ActiveWorkers uint32
  16. TotalWorkers uint32
  17. }