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
build_info_total
Because of #38, the build_info functionality does not work out-of-the-box
What's happening is that opentelemetry-python is converting the gauge to a counter, thus the metric name is build_info_total instead of build_info.
build_info
We could modify the queries to accommodate this issue, until it's resolved upstream:
* on (instance, job) group_left(version, commit) ( last_over_time({ __name__=~"build_info(_total)?" }[${interval}]) or on (instance, job) up )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Because of #38, the build_info functionality does not work out-of-the-box
What's happening is that opentelemetry-python is converting the gauge to a counter, thus the metric name is
build_info_total
instead ofbuild_info
.We could modify the queries to accommodate this issue, until it's resolved upstream:
The text was updated successfully, but these errors were encountered: