File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
opentelemetry-sdk/src/metrics Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ type InMemoryMetrics = Vec<ResourceMetrics>;
1616/// An in-memory metrics exporter that stores metrics data in memory.
1717///
1818/// This exporter is useful for testing and debugging purposes. It stores
19- /// metric data in a user-provided [ `Vec<ResourceMetrics>`][1] , from which the
20- /// Metrics can be retrieved as well.
19+ /// metric data in a user-provided `Vec<ResourceMetrics>`, from which the
20+ /// exported data can be retrieved as well.
2121///
2222/// # Panics
2323///
@@ -61,8 +61,6 @@ type InMemoryMetrics = Vec<ResourceMetrics>;
6161/// }
6262///# }
6363/// ```
64- ///
65- /// [1]: InMemoryMetrics
6664pub struct InMemoryMetricExporter {
6765 metrics : Arc < Mutex < InMemoryMetrics > > ,
6866 temporality : Temporality ,
You can’t perform that action at this time.
0 commit comments