SPLK-3001 Exam QuestionsBrowse all questions from this exam

SPLK-3001 Exam - Question 5


The Remote Access panel within the User Activity dashboard is not populating with the most recent hour of data.

What data model should be checked for potential errors such as skipped searches?

Show Answer
Correct Answer: AD

To diagnose issues with the Remote Access panel within the User Activity dashboard not populating with the most recent hour of data, the Authentication data model should be checked. The Remote Access panel is typically powered by searches based on the Authentication data model, which tracks user authentication events. Skipped searches or errors within this specific data model could directly impact the data population in the Remote Access panel.

Discussion

8 comments
Sign in to comment
dinesh_splunkOption: D
Sep 26, 2021

correct answer is D authentication. Source: https://docs.splunk.com/Documentation/ES/6.6.0/Admin/Dashboardrequirements - check user activity dashboard, remote access panel

1qaz2wsx
Sep 28, 2021

yes you are correct

niuksasOption: D
Sep 29, 2022

The correct answer is D

mi5Option: D
Nov 19, 2021

User Activity dashboard uses multiple DM, but remote access panel is using Authentication datamodel so D is correct option.

andy73Option: D
Dec 1, 2021

D is correct

jassthefabOption: D
Jun 13, 2022

The correct answer is D. Verified in the Splunk ES app.

esdee3Option: D
Sep 30, 2023

D is the correct answer

Brilliantel2Option: D
Jan 16, 2024

The Correct answer is D

dohateloOption: D
Apr 9, 2024

This is the search powering this dashboard, so it's a clear answer D "Authentication" : | tstats `summariesonly` count from datamodel=Authentication.Authentication where Authentication.user=$ds_input_tokens:result.user$ $ds_input_tokens:result.remote_user_bunit$ by Authentication.src,Authentication.user | `drop_dm_object_name("Authentication")`| `get_identity4events(user)` | rename user_watchlist as watchlist | search $ds_input_tokens:result.watchlist_raw$ | `get_asset(src)` | iplocation src | eval session_city=if(isnull(src_city), City,src_city) | eval session_country=if(isnull(src_country), Country,src_country) | where isnotnull(session_city) AND isnotnull(user_work_city) AND (lower(user_work_city)!=lower(session_city) OR lower(user_work_country)!=lower(session_country)) | fields user, src, session_city, session_country, user_work_city, user_work_country | sort 100 -count