Weekend Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 70special

Splunk SPLK-1004 Splunk Core Certified Advanced Power User Exam Exam Practice Test

Page: 1 / 12
Total 120 questions

Splunk Core Certified Advanced Power User Exam Questions and Answers

Testing Engine

  • Product Type: Testing Engine
$37.5  $124.99

PDF Study Guide

  • Product Type: PDF Study Guide
$33  $109.99
Question 1

Which syntax is used when referencing multiple CSS files in a view?

Options:

A.

<dashboard stylesheet="custom.css | userapps.css">

B.

<dashboard style="custom.css, userapps.css">

C.

<dashboard stylesheet=custom.css stylesheet=userapps.css>

D.

<dashboard stylesheet="custom.css, userapps.css">

Question 2

When running a search, which Splunk component retrieves the individual results?

Options:

A.

Indexer

B.

Search head

C.

Universal forwarder

D.

Master node

Question 3

How is a multivalue field created from product="a, b, c, d"?

Options:

A.

... | mvexpand product

B.

... | eval mvexpand(makemv(product, ","))

C.

... | makemv delim="," product

D.

... | makemv delim(product)

Question 4

Which stats function is used to return a sorted list of unique field values?

Options:

A.

values

B.

sum

C.

count

D.

list

Question 5

What is one way to troubleshoot dashboards?

Options:

A.

Create an HTML panel using tokens to verify that they are set.

B.

Run the | previous_searches command to your SPL queries.

C.

Go to the Troubleshooting dashboard of the Searching and Reporting app.

D.

Delete the dashboard and start over.

Question 6

Which of the following cannot be accomplished with a webhook alert action?

Options:

A.

Retrieve data from a web page

B.

Create a ticket in a support app

C.

Post a notification on a web page

D.

Post a message in a chatroom

Question 7

Consider the following search:

(index=_internal log group=tcpin connections) earliest

| stats count as _count by sourceHost guid fwdType version

| eventstats dc(sourceHost) as dc_sourceHost by guid

| where dc_sourceHost > 1

| fields - dc_sourceHost

| xyseries guid fwdType sourceHost

| search guid="00507345-CE09-4A5E-428-D3E8718CB065"

| appendpipe [ stats count | eval "Duplicate GUID" = if(count==0, "Yes", "No") ]

Which of the following are transforming commands?

Options:

A.

where and search

B.

fields and appendpipe

C.

stats and xyseries

D.

eval and eventstats

Question 8

What is the function of the |s token filter?

Options:

A.

|s is not a valid token filter.

B.

To wrap a value in double quotes.

C.

To force no encoding to occur.

D.

To encode URL values.

Question 9

How can a lookup be referenced in an alert?

Options:

A.

Use the lookup dropdown in the alert configuration window.

B.

Follow a lookup with an alert command in the search bar.

C.

Run a search that uses a lookup and save as an alert.

D.

Upload a lookup file directly to the alert.

Question 10

What does the query | makeresults generate?

Options:

A.

A timestamp

B.

A results field

C.

An error message

D.

The results of the previously run search

Question 11

Which of the following correctly uses mvfilter?

Options:

A.

mvfilter(isnotnull(X))

B.

mvfilter(x, isnotnull)

C.

where mvfilter(isnotnull(X))

D.

eval new_field=mvfilter(*)

Question 12

What arguments are required when using the spath command?

Options:

A.

input, output, index

B.

input, output path

C.

No arguments are required.

D.

field, host, source

Question 13

Which of the following is valid syntax for the split function?

Options:

A.

... | eval split phoneNumber by "" as areaCodes.

B.

... | eval areaCodes = split(phoneNumber, "")

C.

... | eval phoneNumber split("-", 3, areaCodes)

D.

... | eval split(phone-Number, "_", areaCodes)

Question 14

What is the value of base lispy in the Search Job Inspector for the search index=sales clientip=170.192.178.10?

Options:

A.

[ index::sales AND 192 AND 10 AND 178 AND 170 ]

B.

[ index::sales AND 469 10 702 390 ]

C.

[ 192 AND 10 AND 178 AND 170 index::sales ]

D.

[ AND 10 170 178 192 index::sales ]

Question 15

When should summary indexing be used?

Options:

A.

For reports that run on small datasets over long time ranges.

B.

For reports that do not qualify for report or data model acceleration.

C.

For reports that run over short time ranges.

D.

For reports that run in Smart Mode.

Question 16

Which command is the opposite ofuntable?

Options:

A.

chart

B.

table

C.

bin

D.

xyseries

Question 17

Why is the transaction command slow in large Splunk deployments?

Options:

A.

It forces the search to run in fast mode.

B.

The transaction runs on each indexer in parallel.

C.

It forces all event data to be returned to the search head.

D.

The transaction runs a hidden eval to format fields.

Question 18

When working with an accelerated data model acc_datmodel and an unaccelerated data model unacc_datmodel, what tstats query could be used to search one of these data models?

Options:

A.

| tstats count from datamodel=acc_datmodel summariesonly=false

B.

| tstats count where datamodel=acc_datmodel summariesonly=false

C.

| tstats count where index=datamodel by index, datamodel

D.

| tstats count from datamodel=unacc_datmodel summariesonly=true

Question 19

What default Splunk role can use the Log Event alert action?

Options:

A.

Power

B.

User

C.

can_delete

D.

Admin

Question 20

What is the value of base lispy in the Search Job Inspector for the search index=sales clientip=170.192.178.10?

Options:

A.

[ index::sales 192 AND 10 AND 178 AND 170 ]

B.

[ index::sales AND 469 10 702 390 ]

C.

[ 192 AND 10 AND 178 AND 170 index::sales ]

D.

[ AND 10 170 178 192 index::sales ]

Question 21

What XML element is used to pass multiple fields into another dashboard using a dynamic drilldown?

Options:

A.

B.

C.

D.

Question 22

When and where do search debug messages appear to help with troubleshooting views?

Options:

A.

In the Dashboard Editor, while the search is running.

B.

In the Search Job Inspector, after the search completes.

C.

In the Search Job Inspector, while the search is running.

D.

In the Dashboard Editor, after the search completes.

Question 23

What qualifies a report for acceleration?

Options:

A.

Fewer than 100k events in search results, with transforming commands used in the search string.

B.

More than 100k events in search results, with only a search command in the search string.

C.

More than 100k events in the search results, with a search and transforming command used in the search string.

D.

Fewer than 100k events in search results, with only a search and transaction command used in the search string.

Question 24

Which element attribute is required for event annotation?

Options:

A.

B.

C.

D.

Question 25

Which of the following is true about a KV Store Collection when using it as a lookup?

Options:

A.

Each collection must have at least 3 fields, one of which needs to match values of a field in your event data.

B.

Each collection must have at least 2 fields, one of which needs to match values of a field in your event data.

C.

Each collection must have at least 2 fields, none of which need to match values of a field in your event data.

D.

Each collection must have at least 3 fields, none of which need to match values of a field in your event data.

Question 26

Which search generates a field with a value of "hello"?

Options:

A.

| makeresults field="hello"

B.

| makeresults | fields="hello"

C.

| makeresults | eval field="hello"

D.

| makeresults | eval field=make{"hello"}

Question 27

Which of the following functions' primary purpose is to convert epoch time to a string format?

Options:

A.

tostring

B.

strptime

C.

tonumber

D.

strftime

Question 28

Which of the following statements is accurate regarding the append command?

Options:

A.

It is used with a subsearch and only accesses real-time searches.

B.

It is used with a subsearch and only accesses historical data.

C.

It cannot be used with a subsearch and only accesses historical data.

D.

It cannot be used with a subsearch and only accesses real-time searches.

Question 29

Which of the following is a valid use of the eval command?

Options:

A.

To filter events based on a condition.

B.

To calculate the sum of a numeric field across all events.

C.

To create a new field based on an existing field's value.

D.

To group events by a specific field.

Question 30

Which commands can run on both search heads and indexers?

Options:

A.

Transforming commands

B.

Centralized streaming commands

C.

Dataset processing commands

D.

Distributable streaming commands

Question 31

How can form inputs impact dashboard panels using inline searches?

Options:

A.

Panels powered by an inline search require a minimum of one form input.

B.

Form inputs cannot impact panels using inline searches.

C.

Adding a form input to a dashboard converts all panels to prebuilt panels.

D.

A token in a search can be replaced by a form input value.

Question 32

When using the bin command, what attributes are used to define the size and number of sets?

Options:

A.

bins and minspan

B.

bins and span

C.

bins and start and end

D.

bins and limit

Question 33

What are the results from the transaction command when keepevicted=true?

Options:

A.

All closed transaction values are set to 0

B.

The search results include data from failed transactions

C.

All closed values are set to 1

D.

Only failed transactions are kept in the data

Question 34

Repeating JSON data structures within one event will be extracted as what type of fields?

Options:

A.

Single value

B.

Lexicographical

C.

Multivalue

D.

Mvindex

Question 35

What is used to separate multiple tokens when creating a drilldown in XML?

Options:

A.

A pipe character (|)

B.

A comma (,)

C.

An escaped ampersand (&)

D.

An escaped double quote (\")

Question 36

Which of the following drilldown methods does not exist in dynamic dashboards?

Options:

A.

Contextual Drilldown

B.

Dynamic Drilldown

C.

Custom Drilldown

D.

Static Drilldown

Page: 1 / 12
Total 120 questions