Saving dashboard doesnt update it for other users

Hi!

I have a problem with our new Grafana installation. I just installed 8.5.5 and moved my dashboards to it (from 8.3.x, cant remember), but now my dashboards wont refresh for other users.

We have a Kiosk where all our servers are monitored in a Table type dashboard and it used to update automatically with a popup notification in the top right corner when I edited and saved the dashboard on my computer. Now it wont do anything after I save the dashboard on my computer and I have to login to the Kiosk and refresh the browser manually.

What am I missing ?

Please help me with this problem!

Solved!

The problem was with my Nginx Reverse Proxy.

map $http_upgrade $connection_upgrade {
default upgrade;
ā€˜ā€™ close;
}

and

proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;

are needed in the the configuration as well.

2 Likes