We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Produce a test that
scanning patterns/*.go with this regex should do the trick for extracting them %\{[A-Za-z_]+(?::[A-Za.-z_]+)(?::[A-Za-z_]+)?\}
patterns/*.go
%\{[A-Za-z_]+(?::[A-Za.-z_]+)(?::[A-Za-z_]+)?\}
this regex extracts all occurrences of %{SYNTAX:ID:TYPE} where ID is present and TYPE is optional
%{SYNTAX:ID:TYPE}
ID
TYPE
semconv for reference: https://github.com/open-telemetry/opentelemetry-collector/blob/main/semconv/v1.25.0/generated_attribute_group.go
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Produce a test that
scanning
patterns/*.go
with this regex should do the trick for extracting them%\{[A-Za-z_]+(?::[A-Za.-z_]+)(?::[A-Za-z_]+)?\}
this regex extracts all occurrences of
%{SYNTAX:ID:TYPE}
whereID
is present andTYPE
is optionalsemconv for reference:
https://github.com/open-telemetry/opentelemetry-collector/blob/main/semconv/v1.25.0/generated_attribute_group.go
The text was updated successfully, but these errors were encountered: