Graphite: Convert tag values returned as numbers to strings (#37882)
* Convert tag values returned as numbers to string This is a bug in Graphite <= 1.1.7. Since 1.1.8 all values are converted to strings. * Simplify type conversions * Fix linting errors
This commit is contained in:
@@ -52,12 +52,39 @@ func TestFixIntervalFormat(t *testing.T) {
|
||||
|
||||
service := &Service{logger: log.New("tsdb.graphite")}
|
||||
|
||||
t.Run("Converts response to data frames", func(*testing.T) {
|
||||
t.Run("Converts response without tags to data frames", func(*testing.T) {
|
||||
body := `
|
||||
[
|
||||
{
|
||||
"target": "target",
|
||||
"tags": { "fooTag": "fooValue", "barTag": "barValue" },
|
||||
"datapoints": [[50, 1], [null, 2], [100, 3]]
|
||||
}
|
||||
]`
|
||||
a := 50.0
|
||||
b := 100.0
|
||||
expectedFrame := data.NewFrame("target",
|
||||
data.NewField("time", nil, []time.Time{time.Unix(1, 0).UTC(), time.Unix(2, 0).UTC(), time.Unix(3, 0).UTC()}),
|
||||
data.NewField("value", data.Labels{}, []*float64{&a, nil, &b}).SetConfig(&data.FieldConfig{DisplayNameFromDS: "target"}),
|
||||
)
|
||||
expectedFrames := data.Frames{expectedFrame}
|
||||
|
||||
httpResponse := &http.Response{StatusCode: 200, Body: ioutil.NopCloser(strings.NewReader(body))}
|
||||
dataFrames, err := service.toDataFrames(httpResponse)
|
||||
|
||||
require.NoError(t, err)
|
||||
if !reflect.DeepEqual(expectedFrames, dataFrames) {
|
||||
expectedFramesJSON, _ := json.Marshal(expectedFrames)
|
||||
dataFramesJSON, _ := json.Marshal(dataFrames)
|
||||
t.Errorf("Data frames should have been equal but was, expected:\n%s\nactual:\n%s", expectedFramesJSON, dataFramesJSON)
|
||||
}
|
||||
})
|
||||
|
||||
t.Run("Converts response with tags to data frames", func(*testing.T) {
|
||||
body := `
|
||||
[
|
||||
{
|
||||
"target": "target",
|
||||
"tags": { "fooTag": "fooValue", "barTag": "barValue", "int": 100, "float": 3.14 },
|
||||
"datapoints": [[50, 1], [null, 2], [100, 3]]
|
||||
}
|
||||
]`
|
||||
@@ -68,6 +95,8 @@ func TestFixIntervalFormat(t *testing.T) {
|
||||
data.NewField("value", data.Labels{
|
||||
"fooTag": "fooValue",
|
||||
"barTag": "barValue",
|
||||
"int": "100",
|
||||
"float": "3.14",
|
||||
}, []*float64{&a, nil, &b}).SetConfig(&data.FieldConfig{DisplayNameFromDS: "target"}),
|
||||
)
|
||||
expectedFrames := data.Frames{expectedFrame}
|
||||
|
||||
Reference in New Issue
Block a user