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 ac61b79 commit a42d516Copy full SHA for a42d516
opentelemetry-sdk/src/metrics/pipeline.rs
@@ -413,12 +413,17 @@ where
413
if existing == id {
414
return;
415
}
416
- otel_warn!(name: "InstrumentSync.AddSync.DuplicateMetricStreamDefinitions",
+ otel_warn!(name: "Instrument.DuplicateMetricStreamDefinitions",
417
name = id.name.clone(),
418
description = id.description.clone(),
419
kind = id.kind,
420
unit = id.unit.clone(),
421
number = id.number.clone(),
422
+ existing_name = existing.name.clone(),
423
+ existing_desc = existing.description.clone(),
424
+ existing_kind = existing.kind,
425
+ existing_unit = existing.unit,
426
+ existing_number = existing.number
427
);
428
429
0 commit comments