Splunk Dev

How do I display Saved Reports in custom navigation menu

tkhatri
Explorer

Hi All,

I want to customize the navigation menu in my custom app to display five different reports in a drop down. I followed documentation https://dev.splunk.com/enterprise/docs/developapps/createapps/addnavsplunkapp/ and was able to display dashboard but reports are not getting displayed. 

I tried using <saved name="report1" /> and <saved source="reports" match="xyz"/> but no luck.

Looking for help on how can I display reports in a navigation menu as dropdown .

Labels (2)
0 Karma
1 Solution

tkhatri
Explorer

I am able to display saved reports in navigation menu using the below syntax. For example, for the report name "Test Report"
<saved name="Test Report" />

The mistake I was doing was not using the exact report name including space.

 

View solution in original post

0 Karma

tkhatri
Explorer

I am able to display saved reports in navigation menu using the below syntax. For example, for the report name "Test Report"
<saved name="Test Report" />

The mistake I was doing was not using the exact report name including space.

 

0 Karma

thambisetty
SplunkTrust
SplunkTrust

you can't add saved searches to custom navigation, but you can add dashboards. Dashboards are knowns as  views in Splunk. add your saved searches to Dashboard before proceeding.

all your dashboards are saved as views in Splunk under settings -> user interface -> views.

First make sure your dashboards ( views ) are placed in your app before making changes to navigation menu is the place where you customize your navigation. Below is the default navigation of search & reporting 

Settings -> user interface -> Navigation Menus -> default.

<nav search_view="search" color="#5CC05C">
  <view name="search" default="true" />
  <view name="analytics_workspace" />
  <view name="datasets" />
  <view name="reports" />
  <view name="alerts" />
  <view name="dashboards" />
</nav>

To create new menu with dropdown the syntax is as below:

for example, I want to create new menu (Other) with dropdown. I have a dashboard rowexpanstionjs in views of same app and I want to show this Dashboard under Other menu like Dashboards,Reports, Alerts in search & reporting then 

Note: view name should match with view name under views in your app.

<nav search_view="search" color="#5CC05C">
  <view name="search" default="true" />
  <view name="analytics_workspace" />
  <view name="datasets" />
  <view name="reports" />
  <view name="alerts" />
  <view name="dashboards" />
  <collection label="Other">
    <view name="rowexpansionjs"/>
  </collection>
</nav>

 custom-menu-ui.png

————————————
If this helps, give a like below.
0 Karma
Get Updates on the Splunk Community!

Why You Can't Miss .conf25: Unleashing the Power of Agentic AI with Splunk & Cisco

The Defining Technology Movement of Our Lifetime The advent of agentic AI is arguably the defining technology ...

Deep Dive into Federated Analytics: Unlocking the Full Power of Your Security Data

In today’s complex digital landscape, security teams face increasing pressure to protect sprawling data across ...

Your summer travels continue with new course releases

Summer in the Northern hemisphere is in full swing, and is often a time to travel and explore. If your summer ...