-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (21 loc) · 948 Bytes
/
.env.example
File metadata and controls
29 lines (21 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# OpenTelemetry Configuration
# The OTLP endpoint for sending telemetry data to KloudMate
OTEL_EXPORTER_OTLP_ENDPOINT=https://otel.kloudmate.com:4318
# Headers for OTLP exporter including Authorization
# Format: sk_xxxxxxxxxxxx
OTEL_EXPORTER_OTLP_HEADERS=Authorization=YOUR_KLOUDMATE_API_KEY
# Service name for the application
OTEL_SERVICE_NAME=km-python-example
# Resource attributes
OTEL_RESOURCE_ATTRIBUTES=deployment.environment=development,service.version=1.0.0
# Exporter protocol (http/protobuf or grpc)
OTEL_EXPORTER_OTLP_PROTOCOL=http/protobuf
# Traces exporter endpoint (optional - overrides OTEL_EXPORTER_OTLP_ENDPOINT for traces)
# OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=http://localhost:4318/v1/traces
# Enable/disable specific instrumentations
OTEL_PYTHON_FLASK_EXCLUDED_URLS=/health
# Logging level
OTEL_LOG_LEVEL=info
# Flask Configuration
# WARNING: Only enable debug mode in development, never in production
FLASK_DEBUG=false