github.com/lingyao2333/mo-zero@v1.4.1/core/stat/task.go (about)

     1  package stat
     2  
     3  import "time"
     4  
     5  // A Task is a task that is reported to Metrics.
     6  type Task struct {
     7  	Drop        bool
     8  	Duration    time.Duration
     9  	Description string
    10  }