github.com/shuguocloud/go-zero@v1.3.0/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  }