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!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...