You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 6, 2024. It is now read-only.
String values which are valid UTF-8 sequences SHOULD be converted to AnyValue's string_value field.
138
+
139
+
String values which are not valid Unicode sequences SHOULD be converted to AnyValue's bytes_value with the bytes representing the string in the original order and format of the source string.
140
+
```
141
+
142
+
To satisfy the existing error-handling requirements, the OpenTelemetry
143
+
SDK specifications will be modified for all signals with an opt-out
144
+
validation feature.
145
+
146
+
#### Proposed Collector behavior change
147
+
148
+
The SDK SHOULD in its default configuration validate all string-valued
149
+
telemetry data fields. Each run of invalid UTF-8 (i.e., any invalid
150
+
UTF-8 sequences) will be replaced by a single Unicode replacement
151
+
character, `�` (U+FFFD). The exact behavior of this correction is
152
+
undefined. When possible, SDKs SHOULD use a built-in library for this
153
+
repair (for example, [Golang's
154
+
`strings.ToValidUTF8()`](https://pkg.go.dev/strings#ToValidUTF8) or
0 commit comments