Skip to content

Commit ac74f85

Browse files
committed
Adding SHOW permissions in addition to select
1 parent 74aa8c4 commit ac74f85

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

docs/use-cases/observability/clickstack/deployment/hyperdx-clickhouse-cloud.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -288,13 +288,14 @@ For users looking to explore the HyperDX interface only, we recommend our [sampl
288288

289289
### User permissions {#user-permissions}
290290

291-
Users accessing HyperDX need **readonly SQL console access** and **SELECT permissions** on tables containing observability data.
291+
Users accessing HyperDX need **readonly SQL console access**, **SHOW permissions**, and **SELECT permissions** on tables containing observability data.
292292

293293
#### Basic Setup {#basic-setup}
294+
294295
```sql
295296
-- Grant readonly access and observability table permissions
296297
GRANT readonly TO your_user;
297-
GRANT SELECT ON otel.* TO your_user;
298+
GRANT SHOW, SELECT ON otel.* TO your_user;
298299
```
299300

300301
#### For ClickHouse infrastructure monitoring {#infra-monitoring}
@@ -321,7 +322,7 @@ GRANT SHOW COLUMNS, SELECT(event_date, event_time, hostname, metric, value)
321322
```
322323

323324
:::note
324-
HyperDX uses the user's SQL console permissions to query data. For custom schemas, grant SELECT on the specific tables users need to access.
325+
HyperDX uses the user's SQL console permissions to query data. For custom schemas, grant SHOW and SELECT on the specific tables users need to access.
325326
:::
326327

327328
:::important Alerts require admin access

0 commit comments

Comments
 (0)