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 has been archived by the owner on Oct 26, 2022. It is now read-only.
fmt.Sprintf("displayName has max length of %v bytes", maxDisplayNameBytes))
), which is super misleading: we don't even check for the string length, and should have specified in the error that we expected it to be prefixed with opentelemetry/ or something more user friendly.
The text was updated successfully, but these errors were encountered:
There are a few issues with the display name validation:
Display name must be prefixed with
opentelemetry/
according to the regexcloud-operations-api-mock/internal/validation/mock_metric_validation.go
Line 48 in e8bcc34
go/ot-gcp-requirements
When display name doesn't match the regex mentioned above, mock server returns the error
"displayName has max length of 128 bytes"
(seecloud-operations-api-mock/internal/validation/statuses.go
Lines 40 to 41 in 7216ea7
opentelemetry/
or something more user friendly.The text was updated successfully, but these errors were encountered: