feat: signoz
This commit is contained in:
parent
dc39e02242
commit
ebcc6e4d2d
4 changed files with 219 additions and 30 deletions
35
docker/signoz/.env.example
Normal file
35
docker/signoz/.env.example
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
# =============================================================================
|
||||
# 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue