Summer Sale Special - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: mxmas70

Home > Splunk > Splunk Core Certified Power User > SPLK-1002

SPLK-1002 Splunk Core Certified Power User Exam Question and Answers

Question # 4

Given the event below, how can the value in the Zip_Code field be used to retrieve the local weather from an external resource?

25/Oct/2023:20:29:43 , 151.131.173.143 , V2.003 , Zip_Code: 75890 , DataCenter: DC1

A.

Create a POST workflow action.

B.

Create a GET workflow action.

C.

Create a PUT workflow action.

D.

Create a Search workflow action.

Full Access
Question # 5

How is a Search Workflow Action configured to run at the same time range as the original search?

A.

Select the "Overwrite time range with the original search" checkbox.

B.

Select the "Use the same time range as the search that created the field listing" checkbox.

C.

Set the earliest time to match the original search.

D.

Select the same time range from the time-range picker.

Full Access
Question # 6

What does the Splunk Common Information Model (CIM) add-on include? (select all that apply)

A.

Custom visualizations

B.

Pre-configured data models

C.

Fields and event category tags

D.

Automatic data model acceleration

Full Access
Question # 7

Which of the following transforming commands can be used with transactions?

A.

chart, timechart, stats, eventstats

B.

chart, timechart, stats, diff

C.

chart, timeehart, datamodel, pivot

D.

chart, timecha:t, stats, pivot

Full Access
Question # 8

What is the correct way to name a macro with two arguments?

A.

us_sales2

B.

us_sales(1,2)

C.

us_sale,2

D.

us_sales(2)

Full Access
Question # 9

Which of the following statements describe calculated fields? (select all that apply)

A.

Calculated fields can be used in the search bar.

B.

Calculated fields can be based on an extracted field.

C.

Calculated fields can only be applied to host and sourcetype.

D.

Calculated fields are shortcuts for performing calculations using the eval command.

Full Access
Question # 10

Which field will be used to populate the field if the productName and product:d fields have values for a given event?

| eval productINFO=coalesco(productName,productid)

A.

Both field values will be used and the product INFO field will become a multivalue field for the given event.

B.

The value for the productName field because it appears first.

C.

Neither field value will be used and the field will be assigned a NULL value for the given event.

D.

The value for the field because it appears second.

Full Access
Question # 11

The fields sidebar does not show________. (Select all that apply.)

A.

interesting fields

B.

selected fields

C.

all extracted fields

Full Access
Question # 12

In this search, __________ will appear on the y-axis. SEARCH: sourcetype=access_combined status!=200 | chart count over host

A.

status

B.

host

C.

count

Full Access
Question # 13

When should the delimiter method be used in the Field Extractor?

A.

When the events do not have the correct permissions set.

B.

When the events are separated by a consistent character or set of characters.

C.

When the events need a regular expression to define the matching pattern.

D.

When the events need to be calculated using special characters.

Full Access
Question # 14

Using the export function, you can export search results as __________.( Select all that apply)

A.

Xml

B.

Json

C.

Html

D.

A php file

Full Access
Question # 15

When using | timchart by host, which filed is representted in the x-axis?

A.

date

B.

host

C.

time

D.

-time

Full Access
Question # 16

Which statement is true?

A.

Pivot is used for creating datasets.

B.

Data model are randomly structured datasets.

C.

Pivot is used for creating reports and dashboards.

D.

In most cases, each Splunk user will create their own data model.

Full Access
Question # 17

Marty has multiple data sources that contain fields with IP Address values. What knowledge object should he use to normalize the fields so his data is CIM compliant?

A.

Event type

B.

Field alias

C.

Field extraction

D.

Tag

Full Access
Question # 18

A field alias has been created based on an original field. A search without any transforming commands is then executed in Smart Mode. Which field name appears in the results?

A.

Both will appear in the All Fields list, but only if the alias is specified in the search.

B.

Both will appear in the Interesting Fields list, but only if they appear in at least 20 percent of events.

C.

The original field only appears in All Fields list and the alias only appears in the Interesting Fields list.

D.

The alias only appears in the All Fields list and the original field only appears in the Interesting Fields list.

Full Access
Question # 19

A calculated field is a shortcut for performing repetitive, long, or complex transformations using which of the following commands?

A.

transaction

B.

lookup

C.

stats

D.

eval

Full Access
Question # 20

Which SPL query will group results that occur within 15 seconds of each other by user and host?

A.

index=firewall | transaction user host span=15s

B.

index=firewall | stats count by _time host user maxspan=15s

C.

index=firewall | stats count by _time host user span=15s

D.

index=firewall | transaction user host maxspan=15s

Full Access
Question # 21

Complete the search, …. | _____ failure > successes

A.

Search

B.

Where

C.

If

D.

Any of the above

Full Access
Question # 22

This is what Splunk uses to categorize the data that is being indexed.

A.

Host

B.

Sourcetype

C.

Index

D.

Source

Full Access
Question # 23

Which of the following searches show a valid use of macro? (Select all that apply)

A.

index=main source=mySource oldField=* |'makeMyField(oldField)'| table _time newField

B.

index=main source=mySource oldField=* | stats if('makeMyField(oldField)') | table _time newField

C.

index=main source=mySource oldField=* | eval newField='makeMyField(oldField)'| table _time newField

D.

index=main source=mySource oldField=* | "'newField('makeMyField(oldField)')'" | table _time newField

Full Access
Question # 24

A user wants a table that will show the total revenue made for each product in each sales region. Which would be the correct SPL query to use?

A.

index=X sourcetype=Y | chart sum(product) by price AND region

B.

index=X | chart sum(price) by product, region

C.

index=X | chart total(product) over price by region

D.

index=X | chart total(price) by product, region

Full Access
Question # 25

Which of the following can a field alias be applied to?

A.

Indexes

B.

Tags

C.

Event types

D.

Sourcetypes

Full Access
Question # 26

When would a user select delimited field extractions using the Field Extractor (FX)?

A.

When a log file has values that are separated by the same character, for example, commas.

B.

When a log file contains empty lines or comments.

C.

With structured files such as JSON or XML.

D.

When the file has a header that might provide information about its structure or format.

Full Access
Question # 27

For the following search, which command would further filter for only IP addresses present more than five times?

A.

index=games I stats count as IP_count by IP B. | where IP_count > 5

B.

index=games | search IP_Count > 5

C.

index=games | where IP > 5

D.

index=games I search IP > 5

Full Access
Question # 28

The gauge command:

A.

creates a single-value visualization

B.

allows you to set colored ranges for a single-value visualization

C.

creates a radial gauge visualization

Full Access
Question # 29

Which of the following statements about calculated fields in Splunk is true?

A.

Calculated fields cannot be chained together to create more complex fields

B.

Calculated fields can be chained together to create more complex fields.

C.

Calculated fields can only be used in dashboards.

D.

Calculated fields can only be used in saved reports.

Full Access
Question # 30

Which method in the Field Extractor would extract the port number from the following event? |

10/20/2022 - 125.24.20.1 ++++ port 54 - user: admin < web error >

A.

Delimiter

B.

rex command

C.

The Field Extractor tool cannot extract regular expressions.

D.

Regular expression

Full Access
Question # 31

Which of the following are valid options to speed up reports? (Select all the apply.)

A.

Edit permissions

B.

Edit description

C.

Edit acceleration

D.

Edit schedule

Full Access
Question # 32

Which of these stats commands will show the total bytes for each unique combination of page and server?

A.

index=web | stats sum (bytes) BY page BY server

B.

index=web | stats sum (bytes) BY page server

C.

index=web | stats sum(bytes) BY page AND server

D.

index=web | stats sum(bytes) BY values (page) values (server)

Full Access
Question # 33

This function of the stats command allows you to identify the number of values a field has.

A.

max

B.

distinct_count

C.

fields

D.

count

Full Access
Question # 34

When would transaction be used instead of stats?

A.

To group events based on a single field value.

B.

To see results of a calculation.

C.

To have a faster and more efficient search.

D.

To group events based on start/end values.

Full Access
Question # 35

Which of the following is one of the pre-configured data models included in the Splunk Common Information Model (CIM) add-on?

A.

Access

B.

Accounting

C.

Authorization

D.

Authentication

Full Access
Question # 36

How could the following syntax for the chart command be rewritten to remove the OTHER category? (select all that apply)

A.

| chart count over CurrentStanding by Action useother=f

B.

| chart count over CurrentStanding by Action usenull-f useother-t

C.

| chart count over CurrentStanding by Action limit=10 useother=f

D.

| chart count over CurrentStanding by Action limit-10

Full Access
Question # 37

What type of command is eval?

A.

Streaming in some modes

B.

Report generating

C.

Distributable streaming

D.

Centralized streaming

Full Access
Question # 38

Which of the following objects can a calculated field use as a source?

A.

An alias of a field.

B.

A field added by an automatic lookup.

C.

The tag field.

D.

The eventtype field.

Full Access
Question # 39

The stats command will create a _____________ by default.

A.

Table

B.

Report

C.

Pie chart

Full Access
Question # 40

In the following eval statement, what is the value of description if the status is 503? index=main | eval description=case(status==200, "OK", status==404, "Not found", status==500, "Internal Server Error")

A.

The description field would contain no value.

B.

The description field would contain the value 0.

C.

The description field would contain the value "Internal Server Error".

D.

This statement would produce an error in Splunk because it is incomplete.

Full Access
Question # 41

What is the relationship between data models and pivots?

A.

Data models provide the datasets for pivots.

B.

Pivots and data models have no relationship.

C.

Pivots and data models are the same thing.

D.

Pivots provide the datasets for data models.

Full Access
Question # 42

When does the CIM add-on apply preconfigured data models to the data?

A.

Search time

B.

Index time

C.

On a cron schedule

D.

At midnight

Full Access
Question # 43

The transaction command allows you to __________ events across multiple sources

A.

duplicate

B.

correlate

C.

persist

D.

tag

Full Access
Question # 44

Consider the the following search run over a time range of last 7 days:

index=web sourcetype=access_conbined | timechart avg(bytes) by product_nane

Which option is used to change the default time span so that results are grouped into 12 hour intervals?

A.

span=12h

B.

timespan=12h

C.

span=12

D.

timespan=12

Full Access
Question # 45

Which type of workflow action sends field values to an external resource (e.g. a ticketing system)?

A.

POST

B.

Search

C.

GET

D.

Format

Full Access
Question # 46

What does the fillnull command do in this search?

index=main sourcetype=http:log | fillnull value="Unknown"

A.

Set the values of the field to null when it is "Unknown".

B.

Set all fields that are null to "Unknown".

C.

Set the values of the field to "Unknown" if it is null.

D.

Set all fields with the value of "Unknown" to null.

Full Access
Question # 47

Which of the following statements describe GET workflow actions?

A.

GET workflow actions must be configured with POST arguments.

B.

Configuration of GET workflow actions includes choosing a sourcetype.

C.

Label names for GET workflow actions must include a field name surrounded by dollar signs.

D.

GET workflow actions can be configured to open the URT link in the current window or in a new window

Full Access
Question # 48

__________ datasets can be added to root dataset to narrow down the search

A.

parent

B.

extracted

C.

event

D.

child

Full Access
Question # 49

Which command is used to create choropleth maps?

A.

geostats

B.

cluster

C.

geom

Full Access
Question # 50

What happens when a user edits the regular expression (regex) field extraction generated in the Field Extractor (FX)?

A.

There is a limit to the number of fields that can be extracted.

B.

The user is unable to preview the extractions.

C.

The extraction is added at index time.

D.

The user is unable to return to the automatic field extraction workflow.

Full Access
Question # 51

Which of the following eval commands will provide a new value for host from src if it exists?

A.

| eval host = if (isnu11 (src), src, host)

B.

| eval host = if (NOT src = host, src, host)

C.

| eval host = if (src = host, src, host)

D.

| eval host = if (isnotnull (src), src, host)

Full Access
Question # 52

Where are the descriptions of the data models that come with the Splunk Common Information Model (CIM) Add-on documented?

A.

Search and reporting user manual.

B.

CIM Add-on manual.

C.

Pivot users manual.

D.

Datamodel command reference guide.

Full Access
Question # 53

Which of the following knowledge objects represents the output of an eval expression?

A.

Eval fields

B.

Calculated fields

C.

Field extractions

D.

Calculated lookups

Full Access
Question # 54

What will you learn from the results of the following search?

sourcetype=cisco_esa | transaction mid, dcid, icid | timechart avg(duration)

A.

The average time elapsed during each transaction for all transactions

B.

The average time for each event within each transaction

C.

The average time between each transaction

Full Access
Question # 55

When extracting fields, we may choose to use our own regular expressions

A.

True

B.

False

Full Access
Question # 56

Highlighted search terms indicate _________ search results in Splunk.

A.

Display as selected fields.

B.

Sorted

C.

Charted based on time

D.

Matching

Full Access
Question # 57

How is a variable for a macro defined?

A.

Place the variable name inside of curly braces: {variable name}.

B.

Place the variable name inside of asterisks: variable name.

C.

Place the variable name inside of dollar signs: $variable name$.

D.

Place the variable name inside of percentage signs: %variable name%.

Full Access
Question # 58

In the Field Extractor Utility, this button will display events that do not contain extracted fields.

Select your answer.

A.

Selected-Fields

B.

Non-Matches

C.

Non-Extractions

D.

Matches

Full Access
Question # 59

Which option of the transaction command would be used to specify the maximum time between events in a transaction?

A.

maxpause

B.

maxspan

C.

duration

D.

 eventcount

Full Access
Question # 60

This clause is used to group the output of a stats command by a specific name.

A.

Rex

B.

As

C.

List

D.

By

Full Access
Question # 61

Which workflow action type performs a secondary search?

A.

POST

B.

Drilldown

C.

GET

D.

Search

Full Access
Question # 62

Which of the following searches can be used to define an event type?

A.

index=games sourcetype=score [search index=players | fields player_id]

B.

index=games sourcetype=score I where score > 9999

C.

index=games sourcetype=score player=* score > 9999

D.

index=games sourcetype=score I stats count by player

Full Access
Question # 63

Which type of visualization shows relationships between discrete values in three dimensions?

A.

Pie chart

B.

Line chart

C.

Bubble chart

D.

Scatter chart

Full Access
Question # 64

Which of the following searches can be saved as an event type?

A.

index=server_516 sourcetype=BETA_201 code=S51 [ | inputlookup servercode.csv append=t ]

B.

index=server_516 sourcetype=BETA_201 code=551

C.

index=server_516 sourcetype=BETA_201 code=551 | stats count by code

D.

index=server_516 sourcetype=BETA_201 code=551 | where code > 200

Full Access
Question # 65

It is mandatory for the lookup file to have this for an automatic lookup to work.

A.

Source type

B.

At least five columns

C.

Timestamp

D.

Input filed

Full Access
Question # 66

In the Field Extractor, when would the regular expression method be used?

A.

When events contain JSON data.

B.

When events contain comma-separated data.

C.

When events contain unstructured data.

D.

When events contain table-based data.

Full Access
Question # 67

Which of the following commands connects an additional table of data directly to the right side of the existing table?

A.

subsearch

B.

update

C.

appendcols

D.

append

Full Access
Question # 68

What other syntax will produce exactly the same results as | chart count over vendor_action by user?

A.

| chart count by vendor_action, user

B.

| chart count over vendor_action, user

C.

| chart count by vendor_action over user

D.

| chart count over user by vendor_action

Full Access
Question # 69

Which of the following statements describes POST workflow actions?

A.

POST workflow actions are always encrypted.

B.

POST workflow actions cannot use field values in their URI.

C.

POST workflow actions cannot be created on custom sourcetypes.

D.

POST workflow actions can open a web page in either the same window or a new .

Full Access
Question # 70

For choropleth maps,splunk ships with the following KMZ files (select all that apply)

A.

States of the United States

B.

States and provinces of the united states and Canada

C.

Countries of the European Union

D.

Countries of the World

Full Access
Question # 71

When used with the timechart command, which value of the limit argument returns all values?

A.

limit=*

B.

limit=all

C.

limit=none

D.

limit=0

Full Access
Question # 72

When creating a Search workflow action, which field is required?

A.

Search string

B.

Data model name

C.

Permission setting

D.

An eval statement

Full Access
Question # 73

When using the timechart command, how can a user group the events into buckets based on time?

A.

Using the span argument.

B.

Using the duration argument.

C.

Using the interval argument.

D.

Adjusting the fieldformat options.

Full Access
Question # 74

Calculated fields can be based on which of the following?

A.

Tags

B.

Extracted fields

C.

Output fields for a lookup

D.

Fields generated from a search string

Full Access
Question # 75

Which of the following statements about data models and pivot are true? (select all that apply)

A.

They are both knowledge objects.

B.

Data models are created out of datasets called pivots.

C.

Pivot requires users to input SPL searches on data models.

D.

Pivot allows the creation of data visualizations that present different aspects of a data model.

Full Access
Question # 76

What happens to the original field name when a field alias is created?

A.

The original field name is not affected by the creation of a field alias.

B.

The original field name is replaced by the field alias within the index.

C.

The original field name is italicized to indicate that it is not an alias.

D.

The original field name still exists in the index but is not visible to the user at search time.

Full Access
Question # 77

How is a macro referenced in a search?

A.

By using the macroname command.

B.

By using the macro command.

C.

By enclosing the macro name in backtick characters (‘).

D.

By enclosing the macro name in single-quote characters (‘).

Full Access
Question # 78

What are the two parts of a root event dataset?

A.

Fields and variables.

B.

Fields and attributes.

C.

Constraints and fields.

D.

Constraints and lookups.

Full Access
Question # 79

In which of the following scenarios is an event type more effective than a saved search?

A.

When a search should always include the same time range.

B.

When a search needs to be added to other users' dashboards.

C.

When the search string needs to be used in future searches.

D.

When formatting needs to be included with the search string.

Full Access
Question # 80

Which of the following statements about tags is true?

A.

Tags are case insensitive.

B.

Tags are created at index time.

C.

Tags can make your data more understandable.

D.

Tags are searched by using the syntax tag: : < fieldneme >

Full Access
Question # 81

These users can create global knowledge objects. (Select all that apply.)

A.

users

B.

power users

C.

administrators

Full Access
Question # 82

If there are fields in the data with values that are " " or empty but not null, which of the following would add a value?

A.

| eval notNULL = if(isnull (notNULL), “0” notNULL)

B.

| eval notNULL = if(isnull (notNULL), “0”

C.

| eval notNULL = “” | nullfill value=0 notNULL

D.

| eval notNULL = “” fillnull value=0 notNULL

Full Access
Question # 83

Which of the following can be saved as an event type?

A.

index=server_485 sourcetype=BETA_726 code=917 ['inputlookup append=t servercode.csv]

B.

index=server_485 sourcetype=BETA_726 code=917 | stats where code > 200

C.

index=server_485 sourcetype=BETA_726 code=917

D.

index=server_485 sourcetype=BETA_726 code=917 | stats count by code

Full Access
Question # 84

Which are valid ways to create an event type? (select all that apply)

A.

By using the searchtypes command in the search bar.

B.

By editing the event_type stanza in the props.conf file.

C.

By going to the Settings menu and clicking Event Types > New.

D.

By selecting an event in search results and clicking Event Actions > Build Event Type.

Full Access
Question # 85

When using | timechart by host, which field is represented in the x-axis?

A.

date

B.

host

C.

time

D.

_time

Full Access
Question # 86

When using the transaction command, what is the assigned timestamp for each of the resulting transactions?

A.

The timestamp of the event search time execution.

B.

The timestamp of the earliest event.

C.

The difference between the earliest and latest event.

D.

The timestamp of the most recent event.

Full Access
Question # 87

Which of the following describes the I transaction command?

A.

It is an SPL command that groups at least two events together based on shared values in selected fields.

B.

It allows an exchange of data from one Splunk index to another Splunk index.

C.

It is an SPL command that groups events together with shared values in selected fields.

D.

It allows an exchange of data from one Splunk system to another Splunk system.

Full Access
Question # 88

Clicking a SEGMENT on a chart, ________.

A.

drills down for that value

B.

highlights the field value across the chart

C.

adds the highlighted value to the search criteria

Full Access
Question # 89

When you mouse over and click to add a search term this (thesE. Boolean operator(s) is(arE. not implied. (Select all that apply).

A.

OR

B.

( )

C.

AND

D.

NOT

Full Access
Question # 90

When using the Field Extractor (FX), which of the following delimiters will work? (select all that apply)

A.

Tabs

B.

Pipes

C.

Colons

D.

Spaces

Full Access
Question # 91

Selected fields are displayed ______each event in the search results.

A.

below

B.

interesting fields

C.

other fields

D.

above

Full Access
Question # 92

To which of the following can a field alias be applied?

A.

Data found in a lookup table.

B.

Either a calculated field or an extracted field.

C.

Only one single field in a dataset.

D.

A given host, source, or sourcetype.

Full Access
Question # 93

Which knowledge object is used to normalize field names to comply with the Splunk Common Information Model (CIM)?

A.

Field alias

B.

Event types

C.

Search workflow action

D.

Tags

Full Access