mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 20:37:12 +01:00
adds tab as second separator for graphite text protocol (#1733)
* adds tab as second separator for graphite text protocol * changes indexFunc for indexAny * Update lib/protoparser/graphite/parser_test.go Co-authored-by: Aliaksandr Valialkin <valyala@victoriametrics.com>
This commit is contained in:
parent
2b266cb87e
commit
a3684fe3de
@ -9,6 +9,10 @@ import (
|
||||
"github.com/valyala/fastjson/fastfloat"
|
||||
)
|
||||
|
||||
// graphite text line protocol may use white space or tab as separator
|
||||
// See https://github.com/grobian/carbon-c-relay/commit/f3ffe6cc2b52b07d14acbda649ad3fd6babdd528
|
||||
const graphiteSeparators = " \t"
|
||||
|
||||
// Rows contains parsed graphite rows.
|
||||
type Rows struct {
|
||||
Rows []Row
|
||||
@ -84,9 +88,9 @@ func (r *Row) UnmarshalMetricAndTags(s string, tagsPool []Tag) ([]Tag, error) {
|
||||
|
||||
func (r *Row) unmarshal(s string, tagsPool []Tag) ([]Tag, error) {
|
||||
r.reset()
|
||||
n := strings.IndexByte(s, ' ')
|
||||
n := strings.IndexAny(s, graphiteSeparators)
|
||||
if n < 0 {
|
||||
return tagsPool, fmt.Errorf("cannot find whitespace between metric and value in %q", s)
|
||||
return tagsPool, fmt.Errorf("cannot find separator between metric and value in %q", s)
|
||||
}
|
||||
metricAndTags := s[:n]
|
||||
tail := s[n+1:]
|
||||
@ -96,7 +100,7 @@ func (r *Row) unmarshal(s string, tagsPool []Tag) ([]Tag, error) {
|
||||
return tagsPool, err
|
||||
}
|
||||
|
||||
n = strings.IndexByte(tail, ' ')
|
||||
n = strings.IndexAny(tail, graphiteSeparators)
|
||||
if n < 0 {
|
||||
// There is no timestamp. Use default timestamp instead.
|
||||
v, err := fastfloat.Parse(tail)
|
||||
|
@ -1,10 +1,11 @@
|
||||
package graphite
|
||||
|
||||
import (
|
||||
"github.com/VictoriaMetrics/VictoriaMetrics/lib/fasttime"
|
||||
"reflect"
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/VictoriaMetrics/VictoriaMetrics/lib/fasttime"
|
||||
)
|
||||
|
||||
func TestUnmarshalMetricAndTagsFailure(t *testing.T) {
|
||||
@ -258,6 +259,35 @@ func TestRowsUnmarshalSuccess(t *testing.T) {
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
// With tab as separator
|
||||
// See https://github.com/grobian/carbon-c-relay/commit/f3ffe6cc2b52b07d14acbda649ad3fd6babdd528
|
||||
f("foo.baz\t125.456\t1789\n", &Rows{
|
||||
Rows: []Row{{
|
||||
Metric: "foo.baz",
|
||||
Value: 125.456,
|
||||
Timestamp: 1789,
|
||||
}},
|
||||
})
|
||||
// With tab as separator and tags
|
||||
f("foo;baz=bar;bb=;y=x;=z\t1\t2", &Rows{
|
||||
Rows: []Row{{
|
||||
Metric: "foo",
|
||||
Tags: []Tag{
|
||||
{
|
||||
Key: "baz",
|
||||
Value: "bar",
|
||||
},
|
||||
{
|
||||
Key: "y",
|
||||
Value: "x",
|
||||
},
|
||||
},
|
||||
Value: 1,
|
||||
Timestamp: 2,
|
||||
}},
|
||||
})
|
||||
|
||||
}
|
||||
|
||||
func Test_streamContext_Read(t *testing.T) {
|
||||
|
Loading…
Reference in New Issue
Block a user