mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 10:50:37 -06:00
30 lines
519 B
Go
30 lines
519 B
Go
package models
|
|
|
|
import (
|
|
"github.com/grafana/grafana/pkg/components/null"
|
|
)
|
|
|
|
type TimePoint [2]null.Float
|
|
type TimeSeriesPoints []TimePoint
|
|
|
|
type StreamPacket struct {
|
|
Stream string `json:"stream"`
|
|
Series []StreamSeries `json:"series"`
|
|
}
|
|
|
|
type StreamSeries struct {
|
|
Name string `json:"name"`
|
|
Points TimeSeriesPoints `json:"points"`
|
|
}
|
|
|
|
type StreamInfo struct {
|
|
Name string
|
|
}
|
|
|
|
type StreamList []*StreamInfo
|
|
|
|
type StreamManager interface {
|
|
GetStreamList() StreamList
|
|
Push(data *StreamPacket)
|
|
}
|