File tree 3 files changed +13
-10
lines changed
3 files changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -383,9 +383,9 @@ func TestEscapedEncode(t *testing.T) {
383
383
t .Errorf ("expected the output bytes buffer to be non-empty" )
384
384
}
385
385
386
- expected := `# TYPE U__foo_2e_metric untyped
387
- U__foo_2e_metric 1.234
388
- U__foo_2e_metric{U__dotted_2e_label_2e_name ="my.label.value"} 8
386
+ expected := `# TYPE foo_metric untyped
387
+ foo_metric 1.234
388
+ foo_metric{dotted_label_name ="my.label.value"} 8
389
389
`
390
390
391
391
if string (out ) != expected {
Original file line number Diff line number Diff line change @@ -105,11 +105,11 @@ func TestToEscapingScheme(t *testing.T) {
105
105
}{
106
106
{
107
107
format : FmtProtoCompact ,
108
- expected : model .ValueEncodingEscaping ,
108
+ expected : model .UnderscoreEscaping ,
109
109
},
110
110
{
111
- format : "application/openmetrics-text; version=1.0.0; charset=utf-8; escaping=underscores " ,
112
- expected : model .UnderscoreEscaping ,
111
+ format : "application/openmetrics-text; version=1.0.0; charset=utf-8; escaping=dots " ,
112
+ expected : model .DotsEscaping ,
113
113
},
114
114
{
115
115
format : "application/openmetrics-text; version=1.0.0; charset=utf-8; escaping=allow-utf-8" ,
Original file line number Diff line number Diff line change @@ -34,10 +34,13 @@ var (
34
34
// goroutines are started.
35
35
NameValidationScheme = LegacyValidation
36
36
37
- // NameEscapingScheme defines the default way that names will be
38
- // escaped when presented to systems that do not support UTF-8 names. If the
39
- // Content-Type "escaping" term is specified, that will override this value.
40
- NameEscapingScheme = ValueEncodingEscaping
37
+ // NameEscapingScheme defines the default way that names will be escaped when
38
+ // presented to systems that do not support UTF-8 names. If the Content-Type
39
+ // "escaping" term is specified, that will override this value.
40
+ // NameEscapingScheme should not be set to the NoEscaping value. That string
41
+ // is used in content negotiation to indicate that a system supports UTF-8 and
42
+ // has that feature enabled.
43
+ NameEscapingScheme = UnderscoreEscaping
41
44
)
42
45
43
46
// ValidationScheme is a Go enum for determining how metric and label names will
You can’t perform that action at this time.
0 commit comments