10 lines
283 B
Go
10 lines
283 B
Go
|
package data
|
||
|
|
||
|
import "git.loafle.net/overflow/commons-go/core/util"
|
||
|
|
||
|
type Metric struct {
|
||
|
SensorConfigID string `json:"sensorConfigID,omitempty"`
|
||
|
Data map[string]string `json:"data,omitempty"`
|
||
|
CollectDate *util.Timestamp `json:"collectDate,omitempty"`
|
||
|
}
|