mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
14 lines
287 B
Go
14 lines
287 B
Go
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"`
|
|
}
|