Skip to content

Commit

Permalink
Fix otel + helm tutorial.
Browse files Browse the repository at this point in the history
  • Loading branch information
fmassot committed Feb 17, 2024
1 parent b6ffac7 commit f46a796
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions docs/log-management/send-logs/using-otel-collector-with-helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,22 @@ environment:
# Quickwit configuration
config:
storage:
s3:
region: ${AWS_REGION}
access_key_id: ${AWS_ACCESS_KEY_ID}
secret_access_key: ${AWS_SECRET_ACCESS_KEY}
# If you are not on AWS S3, you can define a flavor (gcs, minio, garage...)
# and additional variables for your object storage.
# flavor: gcs
# endpoint: https://storage.googleapis.com
# No metastore configuration.
# By default, metadata is stored on the local disk of the metastore instance.
# Everything will be lost after a metastore restart.
s3:
region: ${AWS_REGION}
access_key: ${AWS_ACCESS_KEY_ID}
secret_key: ${AWS_SECRET_ACCESS_KEY}
# If you want to have a metastore on S3, uncomment the following line.
# metastore_uri: ${DEFAULT_INDEX_ROOT_URI}
default_index_root_uri: ${DEFAULT_INDEX_ROOT_URI}
# Indexer settings
Expand Down Expand Up @@ -209,3 +218,7 @@ helm uninstall quickwit
# Delete namespace
kubectl delete namespace qw-tutorial
```

## Next step

Follow our [tutorial](../../get-started/tutorials/trace-analytics-with-grafana.md) to install Quickwit Grafana plugin to explore your logs, create dashboards and alerts.

0 comments on commit f46a796

Please sign in to comment.