mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 10:50:37 -06:00
9ccdd4b824
Closes #21647 Signed-off-by: zhulongcheng <zhulongcheng.dev@gmail.com>
150 lines
3.4 KiB
Go
150 lines
3.4 KiB
Go
package influxdb
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"regexp"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/grafana/grafana/pkg/components/null"
|
|
"github.com/grafana/grafana/pkg/tsdb"
|
|
)
|
|
|
|
type ResponseParser struct{}
|
|
|
|
var (
|
|
legendFormat *regexp.Regexp
|
|
)
|
|
|
|
func init() {
|
|
legendFormat = regexp.MustCompile(`\[\[(\w+)(\.\w+)*\]\]*|\$\s*(\w+?)*`)
|
|
}
|
|
|
|
func (rp *ResponseParser) Parse(response *Response, query *Query) *tsdb.QueryResult {
|
|
queryRes := tsdb.NewQueryResult()
|
|
|
|
for _, result := range response.Results {
|
|
queryRes.Series = append(queryRes.Series, rp.transformRows(result.Series, queryRes, query)...)
|
|
if result.Err != nil {
|
|
queryRes.Error = result.Err
|
|
}
|
|
}
|
|
|
|
return queryRes
|
|
}
|
|
|
|
func (rp *ResponseParser) transformRows(rows []Row, queryResult *tsdb.QueryResult, query *Query) tsdb.TimeSeriesSlice {
|
|
var result tsdb.TimeSeriesSlice
|
|
|
|
for _, row := range rows {
|
|
for columnIndex, column := range row.Columns {
|
|
if column == "time" {
|
|
continue
|
|
}
|
|
|
|
var points tsdb.TimeSeriesPoints
|
|
for _, valuePair := range row.Values {
|
|
point, err := rp.parseTimepoint(valuePair, columnIndex)
|
|
if err == nil {
|
|
points = append(points, point)
|
|
}
|
|
}
|
|
result = append(result, &tsdb.TimeSeries{
|
|
Name: rp.formatSerieName(row, column, query),
|
|
Points: points,
|
|
Tags: row.Tags,
|
|
})
|
|
}
|
|
}
|
|
|
|
return result
|
|
}
|
|
|
|
func (rp *ResponseParser) formatSerieName(row Row, column string, query *Query) string {
|
|
if query.Alias == "" {
|
|
return rp.buildSerieNameFromQuery(row, column)
|
|
}
|
|
|
|
nameSegment := strings.Split(row.Name, ".")
|
|
|
|
result := legendFormat.ReplaceAllFunc([]byte(query.Alias), func(in []byte) []byte {
|
|
aliasFormat := string(in)
|
|
aliasFormat = strings.Replace(aliasFormat, "[[", "", 1)
|
|
aliasFormat = strings.Replace(aliasFormat, "]]", "", 1)
|
|
aliasFormat = strings.Replace(aliasFormat, "$", "", 1)
|
|
|
|
if aliasFormat == "m" || aliasFormat == "measurement" {
|
|
return []byte(query.Measurement)
|
|
}
|
|
if aliasFormat == "col" {
|
|
return []byte(column)
|
|
}
|
|
|
|
pos, err := strconv.Atoi(aliasFormat)
|
|
if err == nil && len(nameSegment) >= pos {
|
|
return []byte(nameSegment[pos])
|
|
}
|
|
|
|
if !strings.HasPrefix(aliasFormat, "tag_") {
|
|
return in
|
|
}
|
|
|
|
tagKey := strings.Replace(aliasFormat, "tag_", "", 1)
|
|
tagValue, exist := row.Tags[tagKey]
|
|
if exist {
|
|
return []byte(tagValue)
|
|
}
|
|
|
|
return in
|
|
})
|
|
|
|
return string(result)
|
|
}
|
|
|
|
func (rp *ResponseParser) buildSerieNameFromQuery(row Row, column string) string {
|
|
var tags []string
|
|
|
|
for k, v := range row.Tags {
|
|
tags = append(tags, fmt.Sprintf("%s: %s", k, v))
|
|
}
|
|
|
|
tagText := ""
|
|
if len(tags) > 0 {
|
|
tagText = fmt.Sprintf(" { %s }", strings.Join(tags, " "))
|
|
}
|
|
|
|
return fmt.Sprintf("%s.%s%s", row.Name, column, tagText)
|
|
}
|
|
|
|
func (rp *ResponseParser) parseTimepoint(valuePair []interface{}, valuePosition int) (tsdb.TimePoint, error) {
|
|
var value null.Float = rp.parseValue(valuePair[valuePosition])
|
|
|
|
timestampNumber, _ := valuePair[0].(json.Number)
|
|
timestamp, err := timestampNumber.Float64()
|
|
if err != nil {
|
|
return tsdb.TimePoint{}, err
|
|
}
|
|
|
|
return tsdb.NewTimePoint(value, timestamp), nil
|
|
}
|
|
|
|
func (rp *ResponseParser) parseValue(value interface{}) null.Float {
|
|
number, ok := value.(json.Number)
|
|
if !ok {
|
|
return null.FloatFromPtr(nil)
|
|
}
|
|
|
|
fvalue, err := number.Float64()
|
|
if err == nil {
|
|
return null.FloatFrom(fvalue)
|
|
}
|
|
|
|
ivalue, err := number.Int64()
|
|
if err == nil {
|
|
return null.FloatFrom(float64(ivalue))
|
|
}
|
|
|
|
return null.FloatFromPtr(nil)
|
|
}
|