I have implemented Single Sign On using Grafana. I have used reverse proxy and disabled the sign out feature in grafana. Now I want to logout of grafana after logging out of the main application. How this feature can be implemented in PHP without clearing all browser cache and cookie.
2
Answers
You can keep the logout button
disable_signout_menu = false
and givesignout_redirect_url = "http://localhost/ldap/login.html"
to your application url so that user will not have access to grafana login page.That is a good one. Have you been able to use Grafana inside a PHP application so that when the test is running, it can get redirected to the Grafana dashboard? Or maybe embed a live – real time dashboard inside Php page?