We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dcaf3b commit 1609f5fCopy full SHA for 1609f5f
sdk/metrics/src/main/java/io/opentelemetry/sdk/metrics/internal/state/AsynchronousMetricStorage.java
@@ -175,9 +175,9 @@ private Attributes validateAndProcessAttributes(Attributes attributes) {
175
Context context = Context.current();
176
attributes = attributesProcessor.process(attributes, context);
177
178
- if (aggregatorHandles.size() == maxCardinality) {
+ if (aggregatorHandles.size() >= maxCardinality) {
179
aggregatorHandles.forEach(handlesDeleter);
180
181
throttlingLogger.log(
182
Level.WARNING,
183
"Instrument "
0 commit comments