How to set up Grafana so that no password is necessary to view dashboards

后端 未结 5 905
日久生厌
日久生厌 2021-01-31 02:13

Despite these settings, Grafana still requires the use of a password to view Dashboards. Can someone please help me with the correct settings?

[auth.anonymous]
#         


        
5条回答
  •  遥遥无期
    2021-01-31 02:27

    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
    

提交回复
热议问题