You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/instrumentation/python/automatic/agent-config.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -30,8 +30,8 @@ Here's an explanation of what each configuration does:
30
30
*`traces_exporter` specifies which trace exporter to use. In this case, traces are being exported to `console` (stdout) and to `otlp`. The `otlp` option tells `opentelemetry-instrument` to send it to an endpoint that accepts OTLP via gRPC. The full list of available options for traces_exporter can be found [here](https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/opentelemetry-instrumentation).
31
31
*`otlp` used above for `traces_exporter` is the equivalent of using `otlp_proto_grpc`. To send traces via HTTP instead of gRPC, replace `otlp_proto_grpc` (or `otlp`) with `otlp_proto_http`.
32
32
*`metrics_exporter` specifies which metrics exporter to use. In this case, metrics are being exported to `console` (stdout). It is currently required for your to specify a metrics exporter. If you aren't exporting metrics, specify `none` as the value instead.
33
-
*`service_name` sets the name of the service associated to the trace, and is sent to your [Observability back-end](/vendors).
34
-
*`exporter_otlp_endpoint` tells `opentelemetry-instrument` to send the traces to the given [Observability back-end's](/vendors) endpiont via gRPC, or directly to the [OpenTelemetry Collector](/docs/collector/).
33
+
*`service_name` sets the name of the service associated to the trace, and is sent to your [Observability back-end](/ecosystem/vendors/).
34
+
*`exporter_otlp_endpoint` tells `opentelemetry-instrument` to send the traces to the given [Observability back-end's](/ecosystem/vendors/) endpiont via gRPC, or directly to the [OpenTelemetry Collector](/docs/collector/).
35
35
*`exporter_otlp_headers` is required depending on your chosen Observability back-end. More info exporter OTLP headers be found [here](/docs/concepts/sdk-configuration/otlp-exporter-configuration/#otel_exporter_otlp_headers).
36
36
* If `exporter_otlp_endpoint` is omitted, the agent assumes that you are using the default Collector gRPC endpoint, `0.0.0.0:4317`. The above command is the equivalent of saying:
37
37
@@ -49,7 +49,7 @@ Here's an explanation of what each configuration does:
49
49
50
50
### Environment Variables
51
51
52
-
In some cases, configuring via [Environment Variables](/docs/concepts/sdk-configuration/) is more preferred. Any setting configurable with a configuration property can also be configured with an Environment Variable.
52
+
In some cases, configuring via [Environment Variables](/docs/concepts/sdk-configuration/) is more preferred. Any setting configurable with a configuration property can also be configured with an Environment Variable.
53
53
54
54
You can apply the following steps to determine the correct name mapping of the desired configuration property:
Copy file name to clipboardExpand all lines: content/en/ecosystem/demo.md
+2
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,11 @@ linkTitle: Demo
4
4
description:
5
5
The OpenTelemetry Demo is a microservice-based distributed system intended to illustrate the implementation of OpenTelemetry in a near real-world environment.
6
6
aliases:
7
+
- /community/demo
7
8
- /docs/demo
8
9
- /docs/getting-started/demo
9
10
- /docs/opentelemetry-demo
11
+
weight: 10
10
12
---
11
13
12
14
The [OpenTelemetry Demo](https://github.com/open-telemetry/opentelemetry-demo)
0 commit comments