2022-04-13 16:24:12 +08:00
|
|
|
package types
|
|
|
|
|
2022-04-14 18:34:27 +08:00
|
|
|
import "time"
|
|
|
|
|
2022-04-13 16:24:12 +08:00
|
|
|
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"`
|
2022-04-13 16:24:12 +08:00
|
|
|
Labels map[string]string `json:"labels"`
|
|
|
|
}
|