File tree 4 files changed +2
-54
lines changed
exporters/ostream/include/opentelemetry/exporters/ostream
sdk/include/opentelemetry/sdk/metrics
4 files changed +2
-54
lines changed Original file line number Diff line number Diff line change 7
7
# include < iostream>
8
8
# include < string>
9
9
# include " opentelemetry/common/spin_lock_mutex.h"
10
- # include " opentelemetry/nostd/span.h"
11
10
# include " opentelemetry/sdk/metrics/data/metric_data.h"
12
11
# include " opentelemetry/sdk/metrics/instruments.h"
13
12
# include " opentelemetry/sdk/metrics/metric_exporter.h"
14
- # include " opentelemetry/sdk/metrics/recordable.h"
15
13
# include " opentelemetry/version.h"
16
14
17
15
OPENTELEMETRY_BEGIN_NAMESPACE
@@ -28,7 +26,7 @@ class OStreamMetricExporter final : public opentelemetry::sdk::metrics::MetricEx
28
26
public:
29
27
/* *
30
28
* Create an OStreamMetricExporter. This constructor takes in a reference to an ostream that the
31
- * export() function will send span data into.
29
+ * export() function will send metrics data into.
32
30
* The default ostream is set to stdout
33
31
*/
34
32
explicit OStreamMetricExporter (std::ostream &sout = std::cout) noexcept ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ class MetricExporter
29
29
virtual ~MetricExporter () = default ;
30
30
31
31
/* *
32
- * Exports a batch of metrics recordables . This method must not be called
32
+ * Exports a batch of metrics data . This method must not be called
33
33
* concurrently for the same exporter instance.
34
34
* @param data metrics data
35
35
*/
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments