Skip to content

Commit a176f9e

Browse files
authored
Merge pull request #4768 from execreate/patch-1
Fix `hyperdx_ingest` user grants when creating an ingestion user
2 parents 35b6dc4 + f7c0eab commit a176f9e

File tree

1 file changed

+1
-1
lines changed
  • docs/use-cases/observability/clickstack/ingesting-data

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ We recommend creating a dedicated database and user for the OTel collector for i
216216
```sql
217217
CREATE DATABASE otel;
218218
CREATE USER hyperdx_ingest IDENTIFIED WITH sha256_password BY 'ClickH0u3eRocks123!';
219-
GRANT SELECT, INSERT, CREATE TABLE, CREATE VIEW ON otel.* TO hyperdx_ingest;
219+
GRANT SELECT, INSERT, CREATE DATABASE, CREATE TABLE, CREATE VIEW ON otel.* TO hyperdx_ingest;
220220
```
221221

222222
This assumes the collector has been configured to use the database `otel`. This can be controlled through the environment variable `HYPERDX_OTEL_EXPORTER_CLICKHOUSE_DATABASE`. Pass this to the image hosting the collector [similar to other environment variables](#modifying-otel-collector-configuration).

0 commit comments

Comments
 (0)