mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -06:00
39 lines
1.1 KiB
Go
39 lines
1.1 KiB
Go
package pipeline
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/grafana/grafana/pkg/services/live/convert"
|
|
)
|
|
|
|
type AutoInfluxConverterConfig struct {
|
|
FrameFormat string `json:"frameFormat"`
|
|
}
|
|
|
|
// AutoInfluxConverter decodes Influx line protocol input and transforms it
|
|
// to several ChannelFrame objects where Channel is constructed from original
|
|
// channel + / + <metric_name>.
|
|
type AutoInfluxConverter struct {
|
|
config AutoInfluxConverterConfig
|
|
converter *convert.Converter
|
|
}
|
|
|
|
func NewAutoInfluxConverter(config AutoInfluxConverterConfig) *AutoInfluxConverter {
|
|
return &AutoInfluxConverter{config: config, converter: convert.NewConverter()}
|
|
}
|
|
|
|
func (i AutoInfluxConverter) Convert(_ context.Context, vars Vars, body []byte) ([]*ChannelFrame, error) {
|
|
frameWrappers, err := i.converter.Convert(body, i.config.FrameFormat)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
channelFrames := make([]*ChannelFrame, 0, len(frameWrappers))
|
|
for _, fw := range frameWrappers {
|
|
channelFrames = append(channelFrames, &ChannelFrame{
|
|
Channel: vars.Channel + "/" + fw.Key(),
|
|
Frame: fw.Frame(),
|
|
})
|
|
}
|
|
return channelFrames, nil
|
|
}
|