Skip to content

Commit d4f9c48

Browse files
committed
move off nightly
1 parent e56b099 commit d4f9c48

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

docs/use-cases/observability/clickstack/config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The following configuration options are available for each component of ClickSta
1919
If using the [All in One](/use-cases/observability/clickstack/deployment/all-in-one), [HyperDX Only](/use-cases/observability/clickstack/deployment/hyperdx-only) or [Local Mode](/use-cases/observability/clickstack/deployment/local-mode-only) simply pass the desired setting via an environment variable e.g.
2020

2121
```bash
22-
docker run -e HYPERDX_LOG_LEVEL='debug' -p 8080:8080 -p 4317:4317 -p 4318:4318 docker.hyperdx.io/hyperdx/hyperdx-all-in-one:2-nightly
22+
docker run -e HYPERDX_LOG_LEVEL='debug' -p 8080:8080 -p 4317:4317 -p 4318:4318 docker.hyperdx.io/hyperdx/hyperdx-all-in-one
2323
```
2424

2525
### Docker compose {#docker-compose}

docs/use-cases/observability/clickstack/deployment/all-in-one.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ This option includes authentication, enabling the persistence of dashboards, ale
3535
The following will run an OpenTelemetry collector (on port 4317 and 4318) and the HyperDX UI (on port 8080).
3636

3737
```bash
38-
docker run -p 8080:8080 -p 4317:4317 -p 4318:4318 docker.hyperdx.io/hyperdx/hyperdx-all-in-one:2-nightly
38+
docker run -p 8080:8080 -p 4317:4317 -p 4318:4318 docker.hyperdx.io/hyperdx/hyperdx-all-in-one
3939
```
4040

4141
### Navigate to the HyperDX UI {#navigate-to-hyperdx-ui}
@@ -71,7 +71,7 @@ docker run \
7171
-v "$(pwd)/.volumes/db:/data/db" \
7272
-v "$(pwd)/.volumes/ch_data:/var/lib/clickhouse" \
7373
-v "$(pwd)/.volumes/ch_logs:/var/log/clickhouse-server" \
74-
docker.hyperdx.io/hyperdx/hyperdx-all-in-one:2-nightly
74+
docker.hyperdx.io/hyperdx/hyperdx-all-in-one
7575
```
7676

7777
## Deploying to production {#deploying-to-production}
@@ -88,7 +88,7 @@ If you need to customize the application (8080) or API (8000) ports that HyperDX
8888
Customizing the OpenTelemetry ports can simply be changed by modifying the port forwarding flags. For example, replacing `-p 4318:4318` with `-p 4999:4318` to change the OpenTelemetry HTTP port to 4999.
8989

9090
```bash
91-
docker run -p 8080:8080 -p 4317:4317 -p 4999:4318 docker.hyperdx.io/hyperdx/hyperdx-all-in-one:2-nightly
91+
docker run -p 8080:8080 -p 4317:4317 -p 4999:4318 docker.hyperdx.io/hyperdx/hyperdx-all-in-one
9292
```
9393

9494
## Using ClickHouse Cloud {#using-clickhouse-cloud}
@@ -102,7 +102,7 @@ export CLICKHOUSE_ENDPOINT=<HTTPS ENDPOINT>
102102
export CLICKHOUSE_USER=<CLICKHOUSE_USER>
103103
export CLICKHOUSE_PASSWORD=<CLICKHOUSE_PASSWORD>
104104

105-
docker run -e CLICKHOUSE_ENDPOINT=${CLICKHOUSE_ENDPOINT} -e CLICKHOUSE_USER=default -e CLICKHOUSE_PASSWORD=${CLICKHOUSE_PASSWORD} -p 8080:8080 -p 4317:4317 -p 4318:4318 docker.hyperdx.io/hyperdx/hyperdx-all-in-one:2-nightly
105+
docker run -e CLICKHOUSE_ENDPOINT=${CLICKHOUSE_ENDPOINT} -e CLICKHOUSE_USER=default -e CLICKHOUSE_PASSWORD=${CLICKHOUSE_PASSWORD} -p 8080:8080 -p 4317:4317 -p 4318:4318 docker.hyperdx.io/hyperdx/hyperdx-all-in-one
106106
```
107107

108108
The `CLICKHOUSE_ENDPOINT` should be the ClickHouse Cloud HTTPS endpoint, including the port `8443` e.g. `https://mxl4k3ul6a.us-east-2.aws.clickhouse.com:8443`

docs/use-cases/observability/clickstack/deployment/hyperdx-only.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ In this mode, data ingestion is left entirely to the user. You can ingest data i
3535
Run the following command, modifying `YOUR_MONGODB_URI` as required.
3636

3737
```bash
38-
docker run -e MONGO_URI=mongodb://YOUR_MONGODB_URI -p 8080:8080 docker.hyperdx.io/hyperdx/hyperdx:2-nightly
38+
docker run -e MONGO_URI=mongodb://YOUR_MONGODB_URI -p 8080:8080 docker.hyperdx.io/hyperdx/hyperdx
3939
```
4040

4141
### Navigate to the HyperDX UI {#navigate-to-hyperdx-ui}

docs/use-cases/observability/clickstack/deployment/local-mode-only.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ It does not include a MongoDB instance, meaning dashboards, saved searches, and
3333
Local mode deploys the HyperDX UI only, accessible on port 8080.
3434

3535
```bash
36-
docker run -p 8080:8080 docker.hyperdx.io/hyperdx/hyperdx-local:2-nightly
36+
docker run -p 8080:8080 docker.hyperdx.io/hyperdx/hyperdx-local
3737
```
3838

3939
### Navigate to the HyperDX UI {#navigate-to-hyperdx-ui}

docs/use-cases/observability/clickstack/getting-started.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This all-in-one image allows you to launch the full stack with a single command,
4141
The following will run an OpenTelemetry collector (on port 4317 and 4318) and the HyperDX UI (on port 8080).
4242

4343
```bash
44-
docker run -p 8080:8080 -p 4317:4317 -p 4318:4318 docker.hyperdx.io/hyperdx/hyperdx-all-in-one:2-nightly
44+
docker run -p 8080:8080 -p 4317:4317 -p 4318:4318 docker.hyperdx.io/hyperdx/hyperdx-all-in-one
4545
```
4646

4747
:::note Persisting data and settings
@@ -58,7 +58,7 @@ docker run \
5858
-v "$(pwd)/.volumes/db:/data/db" \
5959
-v "$(pwd)/.volumes/ch_data:/var/lib/clickhouse" \
6060
-v "$(pwd)/.volumes/ch_logs:/var/log/clickhouse-server" \
61-
docker.hyperdx.io/hyperdx/hyperdx-all-in-one:2-nightly
61+
docker.hyperdx.io/hyperdx/hyperdx-all-in-one
6262
```
6363
:::
6464

@@ -123,7 +123,7 @@ export CLICKHOUSE_PASSWORD=<YOUR_PASSWORD>
123123
Run the following docker command:
124124

125125
```bash
126-
docker run -e CLICKHOUSE_ENDPOINT=${CLICKHOUSE_ENDPOINT} -e CLICKHOUSE_USER=default -e CLICKHOUSE_PASSWORD=${CLICKHOUSE_PASSWORD} -p 8080:8080 -p 4317:4317 -p 4318:4318 docker.hyperdx.io/hyperdx/hyperdx-all-in-one:2-nightly
126+
docker run -e CLICKHOUSE_ENDPOINT=${CLICKHOUSE_ENDPOINT} -e CLICKHOUSE_USER=default -e CLICKHOUSE_PASSWORD=${CLICKHOUSE_PASSWORD} -p 8080:8080 -p 4317:4317 -p 4318:4318 docker.hyperdx.io/hyperdx/hyperdx-all-in-one
127127
```
128128

129129
This will expose an OpenTelemetry collector (on port 4317 and 4318), and the HyperDX UI (on port 8080).
@@ -176,7 +176,7 @@ You can use a hosted version of HyperDX in local mode available at [play.hyperdx
176176
The self-hosted local mode image comes with an OpenTelemetry collector and a ClickHouse server pre-configured as well. This makes it easy to consume telemetry data from your applications and visualize it in HyperDX with minimal external setup. To get started with the self-hosted version, simply run the Docker container with the appropriate ports forwarded:
177177

178178
```bash
179-
docker run -p 8080:8080 docker.hyperdx.io/hyperdx/hyperdx-local:2-nightly
179+
docker run -p 8080:8080 docker.hyperdx.io/hyperdx/hyperdx-local
180180
```
181181

182182
You will not be promoted to create a user as local mode does not include authentication.

docs/use-cases/observability/clickstack/ingesting-data/collector.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ If you are managing your own OpenTelemetry collector in a standalone deployment
3737
To deploy the ClickStack distribution of the OTel connector in a standalone mode, run the following docker command:
3838

3939
```bash
40-
docker run -e OPAMP_SERVER_URL=${OPAMP_SERVER_URL} -e CLICKHOUSE_ENDPOINT=${CLICKHOUSE_ENDPOINT} -e CLICKHOUSE_USER=default -e CLICKHOUSE_PASSWORD=${CLICKHOUSE_PASSWORD} -p 8080:8080 -p 4317:4317 -p 4318:4318 docker.hyperdx.io/hyperdx/hyperdx-otel-collector:2-nightly
40+
docker run -e OPAMP_SERVER_URL=${OPAMP_SERVER_URL} -e CLICKHOUSE_ENDPOINT=${CLICKHOUSE_ENDPOINT} -e CLICKHOUSE_USER=default -e CLICKHOUSE_PASSWORD=${CLICKHOUSE_PASSWORD} -p 8080:8080 -p 4317:4317 -p 4318:4318 docker.hyperdx.io/hyperdx/hyperdx-otel-collector
4141
```
4242

4343
Note that we can overwrite the target ClickHouse instance with environment variables for `CLICKHOUSE_ENDPOINT`, `CLICKHOUSE_USERNAME`, and `CLICKHOUSE_PASSWORD`. The `CLICKHOUSE_ENDPOINT` should be the full ClickHouse HTTP endpoint, including the protocol and port—for example, `http://localhost:8123`.
@@ -68,7 +68,7 @@ export CLICKHOUSE_PASSWORD=<CLICKHOUSE_PASSWORD>
6868
```
6969

7070
```bash
71-
docker run -e OPAMP_SERVER_URL=${OPAMP_SERVER_URL} -e CLICKHOUSE_ENDPOINT=${CLICKHOUSE_ENDPOINT} -e CLICKHOUSE_USER=default -e CLICKHOUSE_PASSWORD=${CLICKHOUSE_PASSWORD} -p 8080:8080 -p 4317:4317 -p 4318:4318 docker.hyperdx.io/hyperdx/hyperdx-all-in-one:2-nightly
71+
docker run -e OPAMP_SERVER_URL=${OPAMP_SERVER_URL} -e CLICKHOUSE_ENDPOINT=${CLICKHOUSE_ENDPOINT} -e CLICKHOUSE_USER=default -e CLICKHOUSE_PASSWORD=${CLICKHOUSE_PASSWORD} -p 8080:8080 -p 4317:4317 -p 4318:4318 docker.hyperdx.io/hyperdx/hyperdx-all-in-one
7272
```
7373

7474
#### Docker Compose {#docker-compose-otel}
@@ -77,7 +77,7 @@ With Docker Compose, modify the collector configuration using the same environme
7777

7878
```yaml
7979
otel-collector:
80-
image: hyperdx/hyperdx-otel-collector:2-nightly
80+
image: hyperdx/hyperdx-otel-collector
8181
environment:
8282
CLICKHOUSE_ENDPOINT: 'https://mxl4k3ul6a.us-east-2.aws.clickhouse-staging.com:8443'
8383
HYPERDX_LOG_LEVEL: ${HYPERDX_LOG_LEVEL}

0 commit comments

Comments
 (0)