Get help exactly when and where you need it. Interactive learning brings contextual documentation and interactive guides directly into Grafana, so you can learn and build without leaving your workflow.
Interactive learning is your in-app learning companion. It provides:
- Smart recommendations – Get relevant docs and guides based on what you're working on
- Interactive guides – Follow step-by-step guided learning journeys with "Show Me" and "Do It" features
- Tab-based navigation – Open multiple docs and guides in tabs, just like a browser
- Milestone tracking – See your progress through learning journeys with clear milestones
- Always available – Access help without switching windows or searching documentation sites
- Look for the Help button (?) in the top navigation bar of Grafana
- Click the Help button to open the Interactive learning panel
- Browse recommended documentation based on your current context
- Click View to read a doc or Start to begin an interactive guides
Once you open Interactive learning:
- Review recommendations – See docs and guides tailored to what you're doing in Grafana
- Open content in tabs – Click "View" or "Start" to open content in a new tab
- Navigate guides – Use the milestone navigation at the bottom to move through learning journeys
- Try interactive features – Click "Show Me" to see where things are, or "Do It" to have Interactive learning guide you through actions
- Manage your tabs – Close tabs you're done with, or keep them open for reference
Alt + Left Arrow– Previous milestoneAlt + Right Arrow– Next milestone
Users can find Interactive learning in multiple ways:
- Help button – Click the Help (?) button in the top navigation
- Command palette – Search for "Interactive learning", "Need help?", or "Learn Grafana" in the command palette (
Cmd+KorCtrl+K)
Admins can configure Interactive learning from the plugin's configuration page in Grafana. The configuration includes three sections:
- Auto-launch guide URL – Set a specific learning journey or documentation page to automatically open when Grafana starts (useful for demos and onboarding)
- Global link interception – (Experimental) When enabled, clicking documentation links anywhere in Grafana will open them in Interactive learning instead of a new tab
- Context-aware recommendations – Enable/disable recommendation service that provides personalized documentation based on your current actions in Grafana
- Data usage controls – Review what data is collected and toggle the feature on or off
- Auto-completion detection – (Experimental) Enable automatic step completion when users perform actions themselves (without clicking "Do it" buttons)
- Timing settings – Configure timeouts for requirement checks and guided steps to optimize the guide experience
Interactive learning supports creating custom interactive guides in JSON format. These guides combine content (markdown, images, video) with interactive elements that can highlight UI elements, click buttons, and fill forms.
- JSON Guide Format Reference - Complete reference for the JSON guide structure and all block types
- HTML to JSON Migration Guide - How to convert existing HTML guides to JSON format
- Requirements Reference - Available requirements for controlling when interactive elements are accessible
{
"id": "my-guide",
"title": "My Interactive Guide",
"blocks": [
{
"type": "markdown",
"content": "# Welcome\n\nThis guide shows you how to navigate Grafana."
},
{
"type": "interactive",
"action": "highlight",
"reftarget": "a[href='/dashboards']",
"requirements": ["navmenu-open"],
"content": "Click **Dashboards** to see your visualizations."
}
]
}See the JSON Guide Demo for a complete example of all block types.
We welcome feedback, issues, and contributions. Visit our GitHub repository to get involved.
See CHANGELOG.md for details on project changes and license information.