Skip to content

Commit bf4843e

Browse files
authored
Merge pull request #690 from ywwg/owilliams/default-escaping
Change the default escape method to UnderscoreEscaping
2 parents 4f8e8f4 + 01da226 commit bf4843e

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

expfmt/encode_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -383,9 +383,9 @@ func TestEscapedEncode(t *testing.T) {
383383
t.Errorf("expected the output bytes buffer to be non-empty")
384384
}
385385

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
389389
`
390390

391391
if string(out) != expected {

expfmt/expfmt_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,11 @@ func TestToEscapingScheme(t *testing.T) {
105105
}{
106106
{
107107
format: FmtProtoCompact,
108-
expected: model.ValueEncodingEscaping,
108+
expected: model.UnderscoreEscaping,
109109
},
110110
{
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,
113113
},
114114
{
115115
format: "application/openmetrics-text; version=1.0.0; charset=utf-8; escaping=allow-utf-8",

model/metric.go

+7-4
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,13 @@ var (
3434
// goroutines are started.
3535
NameValidationScheme = LegacyValidation
3636

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
4144
)
4245

4346
// ValidationScheme is a Go enum for determining how metric and label names will

0 commit comments

Comments
 (0)