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 OTel collector had/have multiple bugs around this:
seconds
This means that if you sent 123ms to the OTLP collector, on Prometheus side this turned into 123s (the value is the same and not having the unit means seconds). See: open-telemetry/opentelemetry-collector-contrib#18903 It seems units are still not converted but at least the unit is in the name now (breaking change), see: open-telemetry/opentelemetry-collector-contrib#20519
Because of this breaking change, our tests are also broken and we need to add the unit to our assertions.
The text was updated successfully, but these errors were encountered:
f022dde
No branches or pull requests
The OTel collector had/have multiple bugs around this:
seconds
(Prometheus' default)This means that if you sent 123ms to the OTLP collector, on Prometheus side this turned into 123s (the value is the same and not having the unit means
seconds
). See: open-telemetry/opentelemetry-collector-contrib#18903It seems units are still not converted but at least the unit is in the name now (breaking change), see: open-telemetry/opentelemetry-collector-contrib#20519
Because of this breaking change, our tests are also broken and we need to add the unit to our assertions.
The text was updated successfully, but these errors were encountered: