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!

Index This | I am a number, but when you add ‘G’ to me, I go away. What number am I?

March 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...