curated_compose/docker/signoz/.env.example

36 lines
1.6 KiB
Text
Raw Normal View History

2026-06-16 11:20:25 -04:00
# =============================================================================
# SigNoz — OpenTelemetry Observability Platform
# =============================================================================
# Copy to .env and edit for your deployment.
# cp .env.example .env
# The actual .env is deployed by Dockhand and should not be committed.
#
# Replaces both Alloy (OTEL collector) and LGTM (Grafana/Prometheus/Tempo/Loki).
# All stacks should point their OTLP exporters to signoz on the pipeline network.
# =============================================================================
# -----------------------------------------------------------------------------
# SigNoz Image Version
# -----------------------------------------------------------------------------
# Pin a specific version for reproducibility. Check releases at:
# https://github.com/SigNoz/signoz/releases
SIGNOZ_VERSION=latest
# -----------------------------------------------------------------------------
# ClickHouse
# -----------------------------------------------------------------------------
CLICKHOUSE_VERSION=25.5
CLICKHOUSE_DB=signoz
CLICKHOUSE_USER=admin
CLICKHOUSE_PASSWORD=change-me-clickhouse-password
# -----------------------------------------------------------------------------
# Exposed Ports
# -----------------------------------------------------------------------------
# SigNoz UI
EXPOSE_SIGNOZ_UI_PORT=3301
# OTLP gRPC receiver (used by instrumented apps/services)
EXPOSE_OTLP_GRPC_PORT=4317
# OTLP HTTP receiver (used by instrumented apps/services)
EXPOSE_OTLP_HTTP_PORT=4318