Skip to content

Commit

Permalink
Update otel helm tutorial.
Browse files Browse the repository at this point in the history
  • Loading branch information
fmassot committed Feb 17, 2024
1 parent f46a796 commit c050249
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions docs/log-management/send-logs/using-otel-collector-with-helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,8 @@ config:
# 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.
# If you want to have a metastore on S3, uncomment the following line.
# metastore_uri: ${DEFAULT_INDEX_ROOT_URI}
# Metastore on S3.
metastore_uri: ${DEFAULT_INDEX_ROOT_URI}
default_index_root_uri: ${DEFAULT_INDEX_ROOT_URI}
Expand Down Expand Up @@ -219,6 +216,19 @@ helm uninstall quickwit
kubectl delete namespace qw-tutorial
```

Finally, you need to delete three JSON files created by Quickwit on your object storage:

```bash
# if your version <= 0.7.1
aws s3 rm ${DEFAULT_INDEX_ROOT_URI}/indexes_states.json
# if your version > 0.7.1
aws s3 rm ${DEFAULT_INDEX_ROOT_URI}/manifest.json
# the metastore file of the logs index
aws s3 rm ${DEFAULT_INDEX_ROOT_URI}/otel-logs-v0_7/metastore.json
# the metastore file of the traces index
aws s3 rm ${DEFAULT_INDEX_ROOT_URI}/otel-traces-v0_7/metastore.json
```

## 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 c050249

Please sign in to comment.