You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Docs examples missing vital information
To Reproduce
Steps to reproduce the behavior:
Install Loki in monolith mode using Helm charts following these docs.
See these type of errors: {"time": "2024-11-28T14:57:41.907260+00:00", "taskName": null, "msg": "5xx response content will not be enabled.", "level": "INFO"} at least one bucket name must be specified github.com/grafana/loki/v3/pkg/storage/chunk/client/aws.buckets
Realize that you need to also configure both the storage and storage_config values:
loki:
storage:
bucketNames:
chunks: "abc"
admin: "def"
ruler: "ghi"
loki:
storage_config:
gcs:
bucket_name: "abc" <----- notice it's same as chunks above... I don't know why but seems to work
service_account: |
{
...
}
Describe the bug
Docs examples missing vital information
To Reproduce
Steps to reproduce the behavior:
{"time": "2024-11-28T14:57:41.907260+00:00", "taskName": null, "msg": "5xx response content will not be enabled.", "level": "INFO"} at least one bucket name must be specified github.com/grafana/loki/v3/pkg/storage/chunk/client/aws.buckets
storage
andstorage_config
values:shown here and here respectively.
Expected behavior
Complete example of how to setup a monolith Loki instance using Helm.
Environment:
Screenshots, Promtail config, or terminal output
N/A
Can someone please also explain, what does the
do? Why do you need to specify that bucket twice?
Thanks kindly for updating the docs with full, working examples.
The text was updated successfully, but these errors were encountered: