Jaeger otlp updates (#3771)

Signed-off-by: Alice Gibbons <alice@diagrid.io>
Signed-off-by: shruthiragu <115894437+shruthiragu@users.noreply.github.com>
This commit is contained in:
Alice Gibbons 2023-09-28 17:24:17 -06:00 committed by shruthiragu
parent 9af6270151
commit 8a43ae5674
2 changed files with 4 additions and 4 deletions

View File

@ -74,7 +74,7 @@ To push traces to your Jaeger instance, install the OpenTelemetry Collector on y
1. Download and inspect the [`open-telemetry-collector-jaeger.yaml`](/docs/open-telemetry-collector/open-telemetry-collector-jaeger.yaml) file.
1. In the data section of the `otel-collector-conf` ConfigMap, update the `jaeger.endpoint` value to reflect the endpoint of your Jaeger collector Kubernetes service object.
1. In the data section of the `otel-collector-conf` ConfigMap, update the `otlp/jaeger.endpoint` value to reflect the endpoint of your Jaeger collector Kubernetes service object.
1. Deploy the OpenTelemetry Collector into the same namespace where your Dapr-enabled applications are running:

View File

@ -30,8 +30,8 @@ data:
# https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter
# for full lists of trace exporters that you can use, and how to
# configure them.
jaeger:
endpoint: "jaeger-collector.observability.svc.cluster.local:14250"
otlp/jaeger:
endpoint: "jaeger-collector.observability.svc.cluster.local:4317"
tls:
insecure: true
service:
@ -40,7 +40,7 @@ data:
traces:
receivers: [otlp]
# List your exporter here.
exporters: [jaeger,logging]
exporters: [otlp/jaeger,logging]
---
apiVersion: v1
kind: Service