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
We are running into a bug with Loki not allowing us to follow the logs live. This was working prior to upgrading to Loki v2.9.
Grafana v10.2.2
Loki v2.9.4
To Reproduce
Steps to reproduce the behavior:
Connected Loki data source to Grafana with basic auth.
Began viewing logs in "Explore" ... tried to live tail them.
Expected behavior
Loki should follow the logs in realtime.
Environment:
Infrastructure: bare-metal VMs
Deployment tool: Terraform/Ansible
We are running a bare-metal simple scalable deployment with nginx load-balancers being used for tenant authentication. After upgrading to Loki v2.9 we noticed this error when tailing the logs.
Describe the bug
We are running into a bug with Loki not allowing us to follow the logs live. This was working prior to upgrading to Loki v2.9.
Grafana v10.2.2
Loki v2.9.4
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Loki should follow the logs in realtime.
Environment:
We are running a bare-metal simple scalable deployment with nginx load-balancers being used for tenant authentication. After upgrading to Loki v2.9 we noticed this error when tailing the logs.
Nginx configuration:
client_body_buffer_size 100M;
client_max_body_size 100m;
ssl_certificate /etc/nginx/ssl/cert.crt;
ssl_certificate_key /etc/nginx/ssl/cert.key;
auth_basic 'Tenant login';
auth_basic_user_file /etc/nginx/.htpasswd;
map $remote_user $tenant {
"
^grafana_read$" tenant1|tenant2|tenant3^(.+?)(read|write)$" $1;"
default $remote_user;
}
map $remote_user $target {
"~^.+?(read|write)$" $1.test.loki.it.ufl.edu:443;
default read;
}
server {
large_client_header_buffers 8 128k;
listen 443 ssl;
resolver 128.227.30.254 ipv6=off;
}
Any help is greatly appreciated.
The text was updated successfully, but these errors were encountered: