mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 01:30:25 +08:00
acdaee0fb6
* change to use ServiceGroup to make it more clear * fix golint issues in core/stat
11 lines
164 B
Go
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
|
|
}
|