From f46a796345030db8e026cda1c192499775d8dce4 Mon Sep 17 00:00:00 2001 From: fmassot Date: Sat, 17 Feb 2024 08:45:17 +0100 Subject: [PATCH] Fix otel + helm tutorial. --- .../using-otel-collector-with-helm.md | 21 +++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/docs/log-management/send-logs/using-otel-collector-with-helm.md b/docs/log-management/send-logs/using-otel-collector-with-helm.md index 3d8d753bf91..5b7894d58c5 100644 --- a/docs/log-management/send-logs/using-otel-collector-with-helm.md +++ b/docs/log-management/send-logs/using-otel-collector-with-helm.md @@ -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 @@ -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.