How to set up Grafana so that no password is necessary to view dashboards - Stack Overflow
Want a guest/anonymous user to just view a single dashboard without login [tried with snapshot but is in not dynamic] is it possible in grafana to share dashborad without login
Create Public Grafana Dashboards without login
Possible to show dashboards with no authentication required?
Thanks @Donald Mok for his answer; I just want to make it as clear as possible. In the Grafana interface you can create an organization. After that you can create some dashboards for this organization. So, there is a problem that you need to specify the organization for anonymous users. And it should be a real organization (for your Grafana). And anonymous users will be able to see only dashboards from this organization.
#################################### Anonymous Auth ##########################
[auth.anonymous]
# enable anonymous access
enabled = true
# specify organization name that should be used for unauthenticated users
org_name = ORGANIZATION
To setup login for anonymous users you need to make these small configuration changes in the default.ini/grafana.ini file (Grafana\conf).
If you want to hide the login page do this configuration:
[auth] # Set to true to disable (hide) the login form, useful if you use OAuth #disable_login_form = false disable_login_form = trueChange
disable_login_formtotrue.Enable anonymous access:
[auth.anonymous] # enable anonymous access enabled = trueSpecify the organization:
# specify organization name that should be used for unauthenticated users org_name = YOUR_ORG_NAME_HERERestart Grafana and you should be able to see the Grafana dashboard. If not, just change your org role from
ViewertoEditor:# specify role for unauthenticated users org_role = Editor
Hello,
Our Grafana requires you to log in with your AD credentials, but our CTO wants a couple of dashboards published where no authentication is required, so you have a hyperlink and it goes straight in.
How can I achieve this?
Thanks
Am I missing something or it's not possible to share Grafana dashboards with the community without having a paying account on Grafana?
I'm speaking of https://grafana.com/grafana/dashboards/
I'm getting a 404 when clicking on the link on the left to add a dashboard: https://grafana.com/orgs/null/dashboards?pg=dashboards&plcmt=usr-upload
Doh! 404! Org not found
I have got conflicting answers for this one. Is it possible to make a dashboard public so that people can view it without logging in ? The community answer says you can't but the Grafana blog had posts on various public Grafana dashboards.