grafana/pkg/api/dtos/stream.go

14 lines
287 B
Go
Raw Normal View History

2016-03-14 23:18:07 +08:00
package dtos
import "encoding/json"
type StreamMessage struct {
Stream string `json:"stream"`
Series []StreamMessageSeries `json:"series"`
}
type StreamMessageSeries struct {
Name string `json:"name"`
Datapoints [][]json.Number `json:"datapoints"`
2016-03-14 23:18:07 +08:00
}