|
|
@ -293,11 +293,11 @@ func TestOpenMetricsParseErrors(t *testing.T) { |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "\n", |
|
|
|
input: "\n", |
|
|
|
err: "\"INVALID\" \"\\n\" is not a valid start token", |
|
|
|
err: "expected a valid start token, got \"\\n\" (\"INVALID\") while parsing: \"\\n\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "metric", |
|
|
|
input: "metric", |
|
|
|
err: "expected value after metric, got \"EOF\"", |
|
|
|
err: "expected value after metric, got \"metric\" (\"EOF\") while parsing: \"metric\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "metric 1", |
|
|
|
input: "metric 1", |
|
|
@ -313,19 +313,19 @@ func TestOpenMetricsParseErrors(t *testing.T) { |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "a\n#EOF\n", |
|
|
|
input: "a\n#EOF\n", |
|
|
|
err: "expected value after metric, got \"INVALID\"", |
|
|
|
err: "expected value after metric, got \"\\n\" (\"INVALID\") while parsing: \"a\\n\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "\n\n#EOF\n", |
|
|
|
input: "\n\n#EOF\n", |
|
|
|
err: "\"INVALID\" \"\\n\" is not a valid start token", |
|
|
|
err: "expected a valid start token, got \"\\n\" (\"INVALID\") while parsing: \"\\n\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: " a 1\n#EOF\n", |
|
|
|
input: " a 1\n#EOF\n", |
|
|
|
err: "\"INVALID\" \" \" is not a valid start token", |
|
|
|
err: "expected a valid start token, got \" \" (\"INVALID\") while parsing: \" \"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "9\n#EOF\n", |
|
|
|
input: "9\n#EOF\n", |
|
|
|
err: "\"INVALID\" \"9\" is not a valid start token", |
|
|
|
err: "expected a valid start token, got \"9\" (\"INVALID\") while parsing: \"9\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "# TYPE u untyped\n#EOF\n", |
|
|
|
input: "# TYPE u untyped\n#EOF\n", |
|
|
@ -337,11 +337,11 @@ func TestOpenMetricsParseErrors(t *testing.T) { |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "# TYPE c counter\n#EOF\n", |
|
|
|
input: "# TYPE c counter\n#EOF\n", |
|
|
|
err: "\"INVALID\" \" \" is not a valid start token", |
|
|
|
err: "expected a valid start token, got \"# \" (\"INVALID\") while parsing: \"# \"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "# TYPE \n#EOF\n", |
|
|
|
input: "# TYPE \n#EOF\n", |
|
|
|
err: "expected metric name after TYPE, got \"INVALID\"", |
|
|
|
err: "expected metric name after TYPE, got \"\\n\" (\"INVALID\") while parsing: \"# TYPE \\n\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "# TYPE m\n#EOF\n", |
|
|
|
input: "# TYPE m\n#EOF\n", |
|
|
@ -349,19 +349,19 @@ func TestOpenMetricsParseErrors(t *testing.T) { |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "# UNIT metric suffix\n#EOF\n", |
|
|
|
input: "# UNIT metric suffix\n#EOF\n", |
|
|
|
err: "unit not a suffix of metric \"metric\"", |
|
|
|
err: "unit \"suffix\" not a suffix of metric \"metric\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "# UNIT metricsuffix suffix\n#EOF\n", |
|
|
|
input: "# UNIT metricsuffix suffix\n#EOF\n", |
|
|
|
err: "unit not a suffix of metric \"metricsuffix\"", |
|
|
|
err: "unit \"suffix\" not a suffix of metric \"metricsuffix\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "# UNIT m suffix\n#EOF\n", |
|
|
|
input: "# UNIT m suffix\n#EOF\n", |
|
|
|
err: "unit not a suffix of metric \"m\"", |
|
|
|
err: "unit \"suffix\" not a suffix of metric \"m\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "# UNIT \n#EOF\n", |
|
|
|
input: "# UNIT \n#EOF\n", |
|
|
|
err: "expected metric name after UNIT, got \"INVALID\"", |
|
|
|
err: "expected metric name after UNIT, got \"\\n\" (\"INVALID\") while parsing: \"# UNIT \\n\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "# UNIT m\n#EOF\n", |
|
|
|
input: "# UNIT m\n#EOF\n", |
|
|
@ -369,7 +369,7 @@ func TestOpenMetricsParseErrors(t *testing.T) { |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "# HELP \n#EOF\n", |
|
|
|
input: "# HELP \n#EOF\n", |
|
|
|
err: "expected metric name after HELP, got \"INVALID\"", |
|
|
|
err: "expected metric name after HELP, got \"\\n\" (\"INVALID\") while parsing: \"# HELP \\n\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "# HELP m\n#EOF\n", |
|
|
|
input: "# HELP m\n#EOF\n", |
|
|
@ -377,27 +377,27 @@ func TestOpenMetricsParseErrors(t *testing.T) { |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "a\t1\n#EOF\n", |
|
|
|
input: "a\t1\n#EOF\n", |
|
|
|
err: "expected value after metric, got \"INVALID\"", |
|
|
|
err: "expected value after metric, got \"\\t\" (\"INVALID\") while parsing: \"a\\t\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "a 1\t2\n#EOF\n", |
|
|
|
input: "a 1\t2\n#EOF\n", |
|
|
|
err: "strconv.ParseFloat: parsing \"1\\t2\": invalid syntax", |
|
|
|
err: "strconv.ParseFloat: parsing \"1\\t2\": invalid syntax while parsing: \"a 1\\t2\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "a 1 2 \n#EOF\n", |
|
|
|
input: "a 1 2 \n#EOF\n", |
|
|
|
err: "expected next entry after timestamp, got \"INVALID\"", |
|
|
|
err: "expected next entry after timestamp, got \" \\n\" (\"INVALID\") while parsing: \"a 1 2 \\n\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "a 1 2 #\n#EOF\n", |
|
|
|
input: "a 1 2 #\n#EOF\n", |
|
|
|
err: "expected next entry after timestamp, got \"TIMESTAMP\"", |
|
|
|
err: "expected next entry after timestamp, got \" #\\n\" (\"TIMESTAMP\") while parsing: \"a 1 2 #\\n\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "a 1 1z\n#EOF\n", |
|
|
|
input: "a 1 1z\n#EOF\n", |
|
|
|
err: "strconv.ParseFloat: parsing \"1z\": invalid syntax", |
|
|
|
err: "strconv.ParseFloat: parsing \"1z\": invalid syntax while parsing: \"a 1 1z\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: " # EOF\n", |
|
|
|
input: " # EOF\n", |
|
|
|
err: "\"INVALID\" \" \" is not a valid start token", |
|
|
|
err: "expected a valid start token, got \" \" (\"INVALID\") while parsing: \" \"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "# EOF\na 1", |
|
|
|
input: "# EOF\na 1", |
|
|
@ -413,7 +413,7 @@ func TestOpenMetricsParseErrors(t *testing.T) { |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "#\tTYPE c counter\n", |
|
|
|
input: "#\tTYPE c counter\n", |
|
|
|
err: "\"INVALID\" \"\\t\" is not a valid start token", |
|
|
|
err: "expected a valid start token, got \"#\\t\" (\"INVALID\") while parsing: \"#\\t\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "# TYPE c counter\n", |
|
|
|
input: "# TYPE c counter\n", |
|
|
@ -421,79 +421,79 @@ func TestOpenMetricsParseErrors(t *testing.T) { |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "a 1 1 1\n# EOF\n", |
|
|
|
input: "a 1 1 1\n# EOF\n", |
|
|
|
err: "expected next entry after timestamp, got \"TIMESTAMP\"", |
|
|
|
err: "expected next entry after timestamp, got \" 1\\n\" (\"TIMESTAMP\") while parsing: \"a 1 1 1\\n\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "a{b='c'} 1\n# EOF\n", |
|
|
|
input: "a{b='c'} 1\n# EOF\n", |
|
|
|
err: "expected label value, got \"INVALID\"", |
|
|
|
err: "expected label value, got \"'\" (\"INVALID\") while parsing: \"a{b='\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "a{b=\"c\",} 1\n# EOF\n", |
|
|
|
input: "a{b=\"c\",} 1\n# EOF\n", |
|
|
|
err: "expected label name, got \"BCLOSE\"", |
|
|
|
err: "expected label name, got \"} \" (\"BCLOSE\") while parsing: \"a{b=\\\"c\\\",} \"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "a{,b=\"c\"} 1\n# EOF\n", |
|
|
|
input: "a{,b=\"c\"} 1\n# EOF\n", |
|
|
|
err: "expected label name or left brace, got \"COMMA\"", |
|
|
|
err: "expected label name or left brace, got \",b\" (\"COMMA\") while parsing: \"a{,b\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "a{b=\"c\"d=\"e\"} 1\n# EOF\n", |
|
|
|
input: "a{b=\"c\"d=\"e\"} 1\n# EOF\n", |
|
|
|
err: "expected comma, got \"LNAME\"", |
|
|
|
err: "expected comma, got \"d=\" (\"LNAME\") while parsing: \"a{b=\\\"c\\\"d=\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "a{b=\"c\",,d=\"e\"} 1\n# EOF\n", |
|
|
|
input: "a{b=\"c\",,d=\"e\"} 1\n# EOF\n", |
|
|
|
err: "expected label name, got \"COMMA\"", |
|
|
|
err: "expected label name, got \",d\" (\"COMMA\") while parsing: \"a{b=\\\"c\\\",,d\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "a{b=\n# EOF\n", |
|
|
|
input: "a{b=\n# EOF\n", |
|
|
|
err: "expected label value, got \"INVALID\"", |
|
|
|
err: "expected label value, got \"\\n\" (\"INVALID\") while parsing: \"a{b=\\n\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "a{\xff=\"foo\"} 1\n# EOF\n", |
|
|
|
input: "a{\xff=\"foo\"} 1\n# EOF\n", |
|
|
|
err: "expected label name or left brace, got \"INVALID\"", |
|
|
|
err: "expected label name or left brace, got \"\\xff\" (\"INVALID\") while parsing: \"a{\\xff\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "a{b=\"\xff\"} 1\n# EOF\n", |
|
|
|
input: "a{b=\"\xff\"} 1\n# EOF\n", |
|
|
|
err: "invalid UTF-8 label value", |
|
|
|
err: "invalid UTF-8 label value: \"\\\"\\xff\\\"\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "a true\n", |
|
|
|
input: "a true\n", |
|
|
|
err: "strconv.ParseFloat: parsing \"true\": invalid syntax", |
|
|
|
err: "strconv.ParseFloat: parsing \"true\": invalid syntax while parsing: \"a true\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "something_weird{problem=\"\n# EOF\n", |
|
|
|
input: "something_weird{problem=\"\n# EOF\n", |
|
|
|
err: "expected label value, got \"INVALID\"", |
|
|
|
err: "expected label value, got \"\\\"\\n\" (\"INVALID\") while parsing: \"something_weird{problem=\\\"\\n\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "empty_label_name{=\"\"} 0\n# EOF\n", |
|
|
|
input: "empty_label_name{=\"\"} 0\n# EOF\n", |
|
|
|
err: "expected label name or left brace, got \"EQUAL\"", |
|
|
|
err: "expected label name or left brace, got \"=\\\"\" (\"EQUAL\") while parsing: \"empty_label_name{=\\\"\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "foo 1_2\n\n# EOF\n", |
|
|
|
input: "foo 1_2\n\n# EOF\n", |
|
|
|
err: "unsupported character in float", |
|
|
|
err: "unsupported character in float while parsing: \"foo 1_2\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "foo 0x1p-3\n\n# EOF\n", |
|
|
|
input: "foo 0x1p-3\n\n# EOF\n", |
|
|
|
err: "unsupported character in float", |
|
|
|
err: "unsupported character in float while parsing: \"foo 0x1p-3\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "foo 0x1P-3\n\n# EOF\n", |
|
|
|
input: "foo 0x1P-3\n\n# EOF\n", |
|
|
|
err: "unsupported character in float", |
|
|
|
err: "unsupported character in float while parsing: \"foo 0x1P-3\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "foo 0 1_2\n\n# EOF\n", |
|
|
|
input: "foo 0 1_2\n\n# EOF\n", |
|
|
|
err: "unsupported character in float", |
|
|
|
err: "unsupported character in float while parsing: \"foo 0 1_2\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "custom_metric_total 1 # {aa=bb}\n# EOF\n", |
|
|
|
input: "custom_metric_total 1 # {aa=bb}\n# EOF\n", |
|
|
|
err: "expected label value, got \"INVALID\"", |
|
|
|
err: "expected label value, got \"b\" (\"INVALID\") while parsing: \"custom_metric_total 1 # {aa=b\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "custom_metric_total 1 # {aa=\"bb\"}\n# EOF\n", |
|
|
|
input: "custom_metric_total 1 # {aa=\"bb\"}\n# EOF\n", |
|
|
|
err: "expected value after exemplar labels, got \"INVALID\"", |
|
|
|
err: "expected value after exemplar labels, got \"\\n\" (\"INVALID\") while parsing: \"custom_metric_total 1 # {aa=\\\"bb\\\"}\\n\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: `custom_metric_total 1 # {aa="bb"}`, |
|
|
|
input: `custom_metric_total 1 # {aa="bb"}`, |
|
|
|
err: "expected value after exemplar labels, got \"EOF\"", |
|
|
|
err: "expected value after exemplar labels, got \"}\" (\"EOF\") while parsing: \"custom_metric_total 1 # {aa=\\\"bb\\\"}\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: `custom_metric 1 # {aa="bb"}`, |
|
|
|
input: `custom_metric 1 # {aa="bb"}`, |
|
|
@ -501,55 +501,55 @@ func TestOpenMetricsParseErrors(t *testing.T) { |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: `custom_metric_total 1 # {aa="bb",,cc="dd"} 1`, |
|
|
|
input: `custom_metric_total 1 # {aa="bb",,cc="dd"} 1`, |
|
|
|
err: "expected label name, got \"COMMA\"", |
|
|
|
err: "expected label name, got \",c\" (\"COMMA\") while parsing: \"custom_metric_total 1 # {aa=\\\"bb\\\",,c\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: `custom_metric_total 1 # {aa="bb"} 1_2`, |
|
|
|
input: `custom_metric_total 1 # {aa="bb"} 1_2`, |
|
|
|
err: "unsupported character in float", |
|
|
|
err: "unsupported character in float while parsing: \"custom_metric_total 1 # {aa=\\\"bb\\\"} 1_2\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: `custom_metric_total 1 # {aa="bb"} 0x1p-3`, |
|
|
|
input: `custom_metric_total 1 # {aa="bb"} 0x1p-3`, |
|
|
|
err: "unsupported character in float", |
|
|
|
err: "unsupported character in float while parsing: \"custom_metric_total 1 # {aa=\\\"bb\\\"} 0x1p-3\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: `custom_metric_total 1 # {aa="bb"} true`, |
|
|
|
input: `custom_metric_total 1 # {aa="bb"} true`, |
|
|
|
err: "strconv.ParseFloat: parsing \"true\": invalid syntax", |
|
|
|
err: "strconv.ParseFloat: parsing \"true\": invalid syntax while parsing: \"custom_metric_total 1 # {aa=\\\"bb\\\"} true\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: `custom_metric_total 1 # {aa="bb",cc=}`, |
|
|
|
input: `custom_metric_total 1 # {aa="bb",cc=}`, |
|
|
|
err: "expected label value, got \"INVALID\"", |
|
|
|
err: "expected label value, got \"}\" (\"INVALID\") while parsing: \"custom_metric_total 1 # {aa=\\\"bb\\\",cc=}\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: `custom_metric_total 1 # {aa=\"\xff\"} 9.0`, |
|
|
|
input: `custom_metric_total 1 # {aa=\"\xff\"} 9.0`, |
|
|
|
err: "expected label value, got \"INVALID\"", |
|
|
|
err: "expected label value, got \"\\\\\" (\"INVALID\") while parsing: \"custom_metric_total 1 # {aa=\\\\\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: `{b="c",} 1`, |
|
|
|
input: `{b="c",} 1`, |
|
|
|
err: `"INVALID" "{" is not a valid start token`, |
|
|
|
err: "expected a valid start token, got \"{\" (\"INVALID\") while parsing: \"{\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: `a 1 NaN`, |
|
|
|
input: `a 1 NaN`, |
|
|
|
err: `invalid timestamp`, |
|
|
|
err: `invalid timestamp NaN`, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: `a 1 -Inf`, |
|
|
|
input: `a 1 -Inf`, |
|
|
|
err: `invalid timestamp`, |
|
|
|
err: `invalid timestamp -Inf`, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: `a 1 Inf`, |
|
|
|
input: `a 1 Inf`, |
|
|
|
err: `invalid timestamp`, |
|
|
|
err: `invalid timestamp +Inf`, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "# TYPE hhh histogram\nhhh_bucket{le=\"+Inf\"} 1 # {aa=\"bb\"} 4 NaN", |
|
|
|
input: "# TYPE hhh histogram\nhhh_bucket{le=\"+Inf\"} 1 # {aa=\"bb\"} 4 NaN", |
|
|
|
err: `invalid exemplar timestamp`, |
|
|
|
err: `invalid exemplar timestamp NaN`, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "# TYPE hhh histogram\nhhh_bucket{le=\"+Inf\"} 1 # {aa=\"bb\"} 4 -Inf", |
|
|
|
input: "# TYPE hhh histogram\nhhh_bucket{le=\"+Inf\"} 1 # {aa=\"bb\"} 4 -Inf", |
|
|
|
err: `invalid exemplar timestamp`, |
|
|
|
err: `invalid exemplar timestamp -Inf`, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "# TYPE hhh histogram\nhhh_bucket{le=\"+Inf\"} 1 # {aa=\"bb\"} 4 Inf", |
|
|
|
input: "# TYPE hhh histogram\nhhh_bucket{le=\"+Inf\"} 1 # {aa=\"bb\"} 4 Inf", |
|
|
|
err: `invalid exemplar timestamp`, |
|
|
|
err: `invalid exemplar timestamp +Inf`, |
|
|
|
}, |
|
|
|
}, |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -586,35 +586,35 @@ func TestOMNullByteHandling(t *testing.T) { |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "a{b=\x00\"ssss\"} 1\n# EOF\n", |
|
|
|
input: "a{b=\x00\"ssss\"} 1\n# EOF\n", |
|
|
|
err: "expected label value, got \"INVALID\"", |
|
|
|
err: "expected label value, got \"\\x00\" (\"INVALID\") while parsing: \"a{b=\\x00\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "a{b=\"\x00", |
|
|
|
input: "a{b=\"\x00", |
|
|
|
err: "expected label value, got \"INVALID\"", |
|
|
|
err: "expected label value, got \"\\\"\\x00\" (\"INVALID\") while parsing: \"a{b=\\\"\\x00\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "a{b\x00=\"hiih\"} 1", |
|
|
|
input: "a{b\x00=\"hiih\"} 1", |
|
|
|
err: "expected equal, got \"INVALID\"", |
|
|
|
err: "expected equal, got \"\\x00\" (\"INVALID\") while parsing: \"a{b\\x00\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "a\x00{b=\"ddd\"} 1", |
|
|
|
input: "a\x00{b=\"ddd\"} 1", |
|
|
|
err: "expected value after metric, got \"INVALID\"", |
|
|
|
err: "expected value after metric, got \"\\x00\" (\"INVALID\") while parsing: \"a\\x00\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "#", |
|
|
|
input: "#", |
|
|
|
err: "\"INVALID\" \" \" is not a valid start token", |
|
|
|
err: "expected a valid start token, got \"#\" (\"INVALID\") while parsing: \"#\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "# H", |
|
|
|
input: "# H", |
|
|
|
err: "\"INVALID\" \" \" is not a valid start token", |
|
|
|
err: "expected a valid start token, got \"# H\" (\"INVALID\") while parsing: \"# H\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "custom_metric_total 1 # {b=\x00\"ssss\"} 1\n", |
|
|
|
input: "custom_metric_total 1 # {b=\x00\"ssss\"} 1\n", |
|
|
|
err: "expected label value, got \"INVALID\"", |
|
|
|
err: "expected label value, got \"\\x00\" (\"INVALID\") while parsing: \"custom_metric_total 1 # {b=\\x00\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
input: "custom_metric_total 1 # {b=\"\x00ss\"} 1\n", |
|
|
|
input: "custom_metric_total 1 # {b=\"\x00ss\"} 1\n", |
|
|
|
err: "expected label value, got \"INVALID\"", |
|
|
|
err: "expected label value, got \"\\\"\\x00\" (\"INVALID\") while parsing: \"custom_metric_total 1 # {b=\\\"\\x00\"", |
|
|
|
}, |
|
|
|
}, |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|