docs/sources/administration/plugin-management/customize-nav-bar.md
By default, Grafana app plugins and their pages appear under the "More apps" section in the navigation menu. However, as a Grafana administrator, you might want to improve user experience by relocating specific pages or entire app plugins to more relevant sections of the navigation hierarchy. This guide shows you how to customize the placement of app plugin pages across different parts of your Grafana navigation menu.
You can change the location of your app plugin pages in two ways:
To relocate an entire app plugin to a different navigation section, use the navigation.app_sections configuration in your Grafana configuration file:
[navigation.app_sections]
org-example-app = explore 100
This configuration:
org-example-appexplore section100 (determining its position within that section)To move specific pages from an app plugin to different navigation sections, use the navigation.app_standalone_pages configuration:
[navigation.app_standalone_pages]
/a/org-example-app/dashboard-page = dashboards 200
/a/org-example-app/monitoring-page = alerting 50
This configuration:
/a/org-example-app/dashboard-page to the dashboards section with sort weight 200/a/org-example-app/monitoring-page to the alerting section with sort weight 50Here's a complete example that configures both the app placement and individual page placement in your Grafana configuration:
# Move the entire app to the Explore section
[navigation.app_sections]
org-example-app = explore 50
# Move specific pages to their own sections
[navigation.app_standalone_pages]
/a/org-example-app/metrics = dashboards 100
/a/org-example-app/logs = alerting 75
To move individual pages you need to know their paths. To identify a plugin page path:
/a/PLUGIN_ID/PAGE_PATHIf your navigation changes don't appear: