Hello
I would like to embed a Grafana Dashboard in my Magic Mirror with the module : MMM-GrafanaChart.
So I have installed the MMM-GrafanaChart module.
I have changed the settings in the grafana.ini as specified :
[auth.anonymous]
enable anonymous access
enabled = true
specify role for unauthenticated users
org_role = Viewer
[security]
allow_embedding = true
My config.js file for this module is simply:
modules: [
{
module: ‘MMM-GrafanaChart’,
position: ‘top_right’, // This can be any of the regions.
config: {
url: “https://localhost:5000/…”, // see below on how to get the URL from Grafana
width: “100%”, // Optional. Default: 100%
height: “100%”, // Optional. Default: 100%
scrolling: “no”, // Optional. Default: no
refreshInterval: 900 //Optional. Default: 900 = 1/4 hour
}
},
]
I have put the Link URL that I found in the Share menu of the Dashboard in url:
Unfortunately on the Magic Mirror I only get a “Welcome to Grafana” window asking for login,and can’t go further, when entering login/password ?
How could I have access and display my dashboard directly without this login from Grafana ?
Thank you very much in advance for your help.