go-zero/core/stat/task.go
Kevin Wan acdaee0fb6
fix golint issues in core/stat (#515)
* change to use ServiceGroup to make it more clear

* fix golint issues in core/stat
2021-02-24 15:13:56 +08:00

11 lines
164 B
Go

package stat
import "time"
// A Task is a task that is reported to Metrics.
type Task struct {
Drop bool
Duration time.Duration
Description string
}