File tree Expand file tree Collapse file tree 4 files changed +25
-10
lines changed
OpenTelemetry.Exporter.Console
OpenTelemetry.Exporter.InMemory
OpenTelemetry.Exporter.Prometheus.AspNetCore
OpenTelemetry.Exporter.Prometheus.HttpListener Expand file tree Collapse file tree 4 files changed +25
-10
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,8 @@ The console exporter prints data to the Console window.
7
7
ConsoleExporter supports exporting logs, metrics and traces.
8
8
9
9
> [ !WARNING]
10
- > This exporter is intended to be used during learning how telemetry
11
- data are created and exported. It is not recommended for any production
12
- environment.
10
+ > This component is intended to be used while learning how telemetry data is
11
+ created and exported. It is not recommended for any production environment.
13
12
14
13
## Installation
15
14
Original file line number Diff line number Diff line change 5
5
6
6
The in-memory exporter stores data in a user provided memory buffer.
7
7
8
+ > [ !WARNING]
9
+ > This component is intended to be used for testing purposes. It is
10
+ not recommended for any production environment.
11
+
8
12
## Installation
9
13
10
14
``` shell
Original file line number Diff line number Diff line change @@ -7,6 +7,19 @@ An [OpenTelemetry Prometheus exporter](https://github.com/open-telemetry/opentel
7
7
for configuring an ASP.NET Core application with an endpoint for Prometheus
8
8
to scrape.
9
9
10
+ > [ !WARNING]
11
+ > This component is still under development due to a dependency on the
12
+ experimental [ Prometheus and OpenMetrics
13
+ Compatibility] ( https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/compatibility/prometheus_and_openmetrics.md )
14
+ specification and can undergo breaking changes before stable release.
15
+ Production environments should consider using
16
+ [ OpenTelemetry.Exporter.OpenTelemetryProtocol] ( ../OpenTelemetry.Exporter.OpenTelemetryProtocol/README.md ) .
17
+ Refer to the [ Getting Started with Prometheus and
18
+ Grafana] ( ../../docs/metrics/getting-started-prometheus-grafana/README.md )
19
+ tutorial for more information.
20
+
21
+ <!-- This comment is to make sure the two notes above and below are not merged -->
22
+
10
23
> [ !NOTE]
11
24
> This exporter does not support Exemplars. For using Exemplars, use the [ OTLP
12
25
Exporter] ( ../OpenTelemetry.Exporter.OpenTelemetryProtocol/README.md ) and use a
Original file line number Diff line number Diff line change @@ -8,13 +8,12 @@ that configures an [HttpListener](https://docs.microsoft.com/dotnet/api/system.n
8
8
instance for Prometheus to scrape.
9
9
10
10
> [ !WARNING]
11
- > This component is intended for dev inner-loop, there is no plan to
12
- make it production ready. Production environments should use
13
- [ OpenTelemetry.Exporter.Prometheus.AspNetCore] ( ../OpenTelemetry.Exporter.Prometheus.AspNetCore/README.md ) ,
14
- or a combination of
15
- [ OpenTelemetry.Exporter.OpenTelemetryProtocol] ( ../OpenTelemetry.Exporter.OpenTelemetryProtocol/README.md )
16
- and [ OpenTelemetry
17
- Collector] ( https://github.com/open-telemetry/opentelemetry-collector ) .
11
+ > This component is intended for dev inner-loop, there is no plan to make it
12
+ production ready. Production environments should consider using
13
+ [ OpenTelemetry.Exporter.OpenTelemetryProtocol] ( ../OpenTelemetry.Exporter.OpenTelemetryProtocol/README.md ) .
14
+ Refer to the [ Getting Started with Prometheus and
15
+ Grafana] ( ../../docs/metrics/getting-started-prometheus-grafana/README.md )
16
+ tutorial for more information.
18
17
19
18
## Prerequisite
20
19
You can’t perform that action at this time.
0 commit comments