The helm chart for ClickStack can be found here and is the recommended method for production deployments. By default, the Helm chart provisions all core components, including:Documentation Index
Fetch the complete documentation index at: https://private-7c7dfe99-page-updates.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
- ClickHouse
- HyperDX
- OpenTelemetry (OTel) collector
- MongoDB (for persistent application state)
- Environment-specific configuration via
values.yaml - Resource limits and pod-level scaling
- TLS and ingress configuration
- Secrets management and authentication setup
Suitable for
- Proof of concepts
- Production
Deployment steps
Forward ports
Port forwarding allows us to access and set up HyperDX. Users deploying to production should instead expose the service via an ingress or load balancer to ensure proper network access, TLS termination, and scalability. Port forwarding is best suited for local development or one-off administrative tasks, not long-term or high-availability environments.Navigate to the UI
Visit http://localhost:8080 to access the HyperDX UI.Create a user, providing a username and password which meets the requirements.On clickingCreate, data sources will be created for the ClickHouse instance deployed with the Helm chart.Overriding default connectionYou can override the default connection to the integrated ClickHouse instance. For details, see “Using ClickHouse Cloud”.
Customizing values (optional)
You can customize settings by using--set flags. For example:values.yaml. To retrieve the default values:Using secrets (optional)
For handling sensitive data such as API keys or database credentials, use Kubernetes secrets. The HyperDX Helm charts provide default secret files that you can modify and apply to your cluster.Using pre-configured secrets
The Helm chart includes a default secret template located atcharts/clickstack/templates/secrets.yaml. This file provides a base structure for managing secrets.If you need to manually apply a secret, modify and apply the provided secrets.yaml template:Creating a custom secret
If you prefer, you can create a custom Kubernetes secret manually:Referencing a secret
To reference a secret invalues.yaml:Using ClickHouse Cloud
If using ClickHouse Cloud users disable the ClickHouse instance deployed by the Helm chart and specify the Cloud credentials:values.yaml file:
Production notes
By default, this chart also installs ClickHouse and the OTel collector. However, for production, it is recommended that you manage ClickHouse and the OTel collector separately. To disable ClickHouse and the OTel collector, set the following values:Task configuration
By default, there is one task in the chart setup as a cronjob, responsible for checking whether alerts should fire. Here are its configuration options:| Parameter | Description | Default |
|---|---|---|
tasks.enabled | Enable/Disable cron tasks in the cluster. By default, the HyperDX image will run cron tasks in the process. Change to true if you’d rather use a separate cron task in the cluster. | false |
tasks.checkAlerts.schedule | Cron schedule for the check-alerts task | */1 * * * * |
tasks.checkAlerts.resources | Resource requests and limits for the check-alerts task | See values.yaml |
Upgrading the chart
To upgrade to a newer version:Upgrading to v2.xIf you want to migrate to the v2.x subchart-based chart, see the Upgrade guide for migration instructions. This is a breaking change — an in-place
helm upgrade is not supported.Uninstalling ClickStack
To remove the deployment:Troubleshooting
Checking logs
Debugging a failed install
Verifying deployment
Schema choice: Map vs JSON
ClickStack stores attributes asMap(LowCardinality(String), String) columns by default. This is the recommended schema for observability workloads. Combined with bucketed map serialization and text indexes on map keys and values, it provides selective lookups without the per-key ingest overhead of dynamic JSON subcolumns.
A JSON-typed schema is available in beta for evaluation on workloads with a small, stable attribute key-set. It is not recommended as the default. See Map vs JSON type for the full comparison and the env vars required to enable JSON support.
Related Documentation
v1.x deployment guides
- Deployment options (v1.x) - External ClickHouse, OTEL collector, and minimal deployments
- Configuration guide (v1.x) - API keys, secrets, and ingress setup
- Cloud deployments (v1.x) - GKE, EKS, AKS configurations and production best practices
v2.x documentation
- Helm (v2.x) - v2.x deployment guide
- Upgrade guide - Migrating from v1.x to v2.x
Additional resources
- ClickStack getting started guide - Introduction to ClickStack
- ClickStack Helm charts repository - Chart source code and values reference
- Kubernetes documentation - Kubernetes reference
- Helm documentation - Helm reference