categraf/types/types.go

11 lines
235 B
Go
Raw Normal View History

package types
2022-04-14 18:34:27 +08:00
import "time"
type Sample struct {
Metric string `json:"metric"`
2022-04-14 18:34:27 +08:00
Timestamp time.Time `json:"timestamp"`
2022-04-13 20:12:20 +08:00
Value float64 `json:"value"`
Labels map[string]string `json:"labels"`
}