Splunk Enterprise Certified Admin — Question 8
Given the following two files defining app navigation, which navigation options will be displayed to the end user? (Select all that apply.)
$SPLUNK_HOME/etc/apps/app_name/default/data/ui/nav/default.xml
<nav search_view=`search` color=`#65A637`>
<view name=`search` default=`˜true' />
<view name=`datasets` />
<view name=`reports` />
<view name=`dashboards` />
</nav>
$SPLUNK_HOME/etc/apps/app_name/local/data/ui/nav/default/xml
<nav search_view=`search` color=`#65A637`>
<view name=`search` default=`˜true' />
<view name=`datasets` />
<view name=`dashboards` />
</nav>
Answer options
- A. Search
- B. Reports
- C. Datasets
- D. Dashboards
Correct answer: B, C
Explanation
The correct options are B and C. The 'reports' view is present in the first file but not in the second, making it unavailable to the user, while both 'datasets' and 'dashboards' views are included in the local file, hence they are displayed. 'Search' is the default option but is not a selectable navigation item in this context.