I’m using Grafana with anonymous user for testing. Everything works, but I get this error in the log every 10 seconds:
grafana-1 | logger=authn.service t=2025-03-13T19:42:59.897886591Z level=warn msg=“Failed to authenticate request” client=auth.client.session error=“user token not found”
Is there some way to suppress this warning?
I’m using Grafana 11.5.2 with this docker compose:
grafana:
image: grafana/grafana:latest
ports:
- "3000:3000"
volumes:
- ./provisioning/:/etc/grafana/provisioning/
environment:
- GF_AUTH_ANONYMOUS_ENABLED=true
- GF_AUTH_ANONYMOUS_ORG_ROLE=Admin
depends_on:
- prometheus