grafana/pkg/models/test_data.go

20 lines
323 B
Go
Raw Normal View History

2017-03-30 13:01:04 -05:00
package models
import "time"
type InsertSqlTestDataCommand struct {
}
type SqlTestData struct {
Id int64
Metric1 string
Metric2 string
ValueBigInt int64
ValueDouble float64
2017-03-30 13:23:40 -05:00
ValueFloat float32
2017-03-30 13:01:04 -05:00
ValueInt int
TimeEpoch int64
TimeDateTime time.Time
TimeTimeStamp time.Time
}