-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (19 loc) · 914 Bytes
/
.env.example
File metadata and controls
26 lines (19 loc) · 914 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
# OpenObserve Configuration
# Copy this file to .env and fill in your values
# Optional: OpenObserve base URL (default: http://localhost:5080)
OPENOBSERVE_URL=http://localhost:5080
# Optional: Organization name (default: default)
OPENOBSERVE_ORG=default
# Required: Authorization token
# Format: "Basic <base64-encoded-credentials>"
# Example: echo -n "user@example.com:password" | base64
# Result: Basic cm9vdEBleGFtcGxlLmNvbTpDb21wbGV4cGFzczEyMz==
OPENOBSERVE_AUTH_TOKEN=Basic cm9vdEBleGFtcGxlLmNvbTpDb21wbGV4cGFzczEyMz==
# Optional: Protocol to use for sending traces: "grpc" or "http/protobuf" (default: "http/protobuf")
OPENOBSERVE_PROTOCOL=http/protobuf
# Optional: Stream name for traces (default: "default")
OPENOBSERVE_TRACES_STREAM_NAME=default
# Optional: Request timeout in seconds (default: 30)
OPENOBSERVE_TIMEOUT=30
# Optional: Enable/disable tracing (default: true)
OPENOBSERVE_ENABLED=true