Anonymous login

I have setup a PMM environment to monitor our DB infrastructure. The setup is entirely internal and only accessible from within our network. I’d like to enable it so that visiting the Metrics page presents the user with the metrics without a requirement to login, similar to the demo page hosted by Percona.

I managed to resolve this. For anyone else wondering, you will need to modify the file /etc/grafana/grafana.ini in the docker container, and enable anonymous login with there under the anonymous auth section.

#################################### Anonymous Auth ##########################
[auth.anonymous]
# enable anonymous access
enabled = true
# specify organization name that should be used for unauthenticated users
org_name = Main Org.
# specify role for unauthenticated users
org_role = Viewer

Yes, correct. However, grafana.ini will not be preserved once you re-create pmm-server container or on upgrade.