-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathtelemetry.env
More file actions
23 lines (19 loc) · 1.02 KB
/
telemetry.env
File metadata and controls
23 lines (19 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
##############################################################################################################################
# TELEMETRY / OBSERVABILITY SETTINGS
##############################################################################################################################
# Docker images
OTEL_COLLECTOR_DOCKER_IMAGE=otel/opentelemetry-collector-contrib:0.132.0
DATA_PREPPER_DOCKER_IMAGE=opensearchproject/data-prepper:2.11.0
# Host ports exposed by observability services
OTEL_COLLECTOR_OTLP_GRPC_PORT=4317
OTEL_COLLECTOR_OTLP_HTTP_PORT=4318
OTEL_COLLECTOR_HEALTH_PORT=13133
DATA_PREPPER_API_PORT=4900
DATA_PREPPER_OTEL_TRACE_PORT=21890
# Common OpenTelemetry SDK defaults for instrumented services
OTEL_TRACES_EXPORTER=otlp
OTEL_METRICS_EXPORTER=none
OTEL_LOGS_EXPORTER=none
OTEL_EXPORTER_OTLP_PROTOCOL=grpc
OTEL_EXPORTER_OTLP_ENDPOINT=http://otel-collector:${OTEL_COLLECTOR_OTLP_GRPC_PORT}
##############################################################################################################################