Documentation
Documentation
Reference and guides. The sections below are the documentation's structure; pages are published as each area of the product ships.
Start
- Getting started
- Kubernetes
- OpenTelemetry
Signals
- Logs
- Metrics
- Traces
- eBPF
Query
- PromQL
- SQL
Operate
- Deployments
- Alerts
- SLOs
- Retention
Platform
- API
- Security
- Architecture
- Troubleshooting
Send your first telemetry
ClueLake accepts OpenTelemetry over OTLP. If you already run an OpenTelemetry Collector, adding an exporter is the whole integration.
values.yaml — OpenTelemetry Collector
config:
exporters:
otlphttp/cluelake:
endpoint: ${CLUELAKE_ENDPOINT}
headers:
authorization: Bearer ${CLUELAKE_INGEST_TOKEN}
service:
pipelines:
traces: { exporters: [otlphttp/cluelake] }
metrics: { exporters: [otlphttp/cluelake] }
logs: { exporters: [otlphttp/cluelake] }The ingest token is issued per environment in the portal and is shown once. It is stored only as a hash, so a lost token is replaced rather than recovered. Full setup.