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
The docker run command:
docker run --rm \ -v ${SCRIPT_DIR}/tmp-semconv/model:/source \ -v ${SCRIPT_DIR}/templates:/templates \ -v ${ROOT_DIR}/api/include/opentelemetry/trace/:/output \ otel/semconvgen:$GENERATOR_VERSION \ --only span,event,attribute_group,scope \ -f /source code \ --template /templates/SemanticAttributes.h.j2 \ --output /output/semantic_conventions.h \ -Dsemconv=trace \ -Dclass=SemanticConventions \ -DschemaUrl=$SCHEMA_URL \ -Dnamespace_open="namespace trace {" \ -Dnamespace_close="}"
fails, because mounting volumes:
-v ${SCRIPT_DIR}/tmp-semconv/model:/source \
does not allow to see the model yaml files.
The text was updated successfully, but these errors were encountered:
Fixes open-telemetry#2454
a8f7a97
marcalff
Successfully merging a pull request may close this issue.
The docker run command:
fails, because mounting volumes:
does not allow to see the model yaml files.
The text was updated successfully, but these errors were encountered: