skip to Main Content

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


  1. You can keep the logout button disable_signout_menu = false and give signout_redirect_url = "http://localhost/ldap/login.html" to your application url so that user will not have access to grafana login page.

    Login or Signup to reply.
  2. 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?

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search