In which of the following scenarios is an event type more effective than a saved search?
The Field Extractor (FX) is used to extract a custom field. A report can be created using this custom field. The created report can then be shared with other people in the organization. If another person in the organization runs the shared report and no results are returned, why might this be? (select all that apply)
When would a user select delimited field extractions using the Field Extractor (FX)?
During the validation step of the Field Extractor workflow:
Select your answer.
The Splunk Common Information Model (CIM) is a collection of what type of knowledge object?
What will you learn from the results of the following search?
sourcetype=cisco_esa | transaction mid, dcid, icid | timechart avg(duration)
What does the Splunk Common Information Model (CIM) add-on include? (select all that apply)
Which tool uses data models to generate reports and dashboard panels without using SPL?
This function of the stats command allows you to identify the number of values a field has.
Consider the following search:
index=web sourcetype=access_corabined
The log shows several events that share the same jsesszonid value (SD462K101O2F267). View the events as a group.
From the following list, which search groups events by jSSESSIONID?
In this search, __________ will appear on the y-axis. SEARCH: sourcetype=access_combined status!=200 | chart count over host
Which of the following fields should be normalized using the Splunk Common Information Model (CIM) based on their relationship?
When using the timechart command, how can a user group the events into buckets based on time?
When using multiple expressions in a single eval command, which delimiter is used?
The macro weekly_sales (2) contains the search string:
index=games | eval ProductSales = $Price$ * $AmountSold$
Which of the following will return results?
Which of the following transforming commands can be used with transactions?
When used with the timechart command, which value of the limit argument returns all values?
A field alias is created where field1—fieid2 and the Overwrite Field Values checkbox is selected.
What happens if an event only contains values for fieid1?
Which of the following file formats can be extracted using a delimiter field extraction?
Which of the following statements is true about the root dataset of a data model?
Which of the following is included with the Splunk Common Information Model (CIM) Add-on?
Which knowledge object is used to normalize field names to comply with the Splunk Common Information Model (CIM)?
Consider the following search:
index=web sourcetype=access_combined
The log shows several events that share the same JSESSIONID value (SD470K92802F117). View the events as a group.
From the following list, which search groups events by JSESSIONID?
The eval command allows you to do which of the following? (Choose all that apply.)
What functionality does the Splunk Common Information Model (CIM) rely on to normalize fields with different names?
Which of the following statements best describes the search string below?
| datamodel Application_State search
Which of these stats commands will show the total bytes for each unique combination of page and server?
If there are fields in the data with values that are " " or empty but not null, which of the following would add a value?
When using the Field Extractor (FX), which of the following delimiters will work? (select all that apply)
Splunk alerts can be based on search that run______. (Select all that apply.)
Using the Field Extractor (FX) tool, a value is highlighted to extract and give a name to a new field. Splunk has not successfully extracted that value from all appropriate events. What steps can be taken so Splunk successfully extracts the value from all appropriate events? (select all that apply)
After manually editing; a regular expression (regex), which of the following statements is true?
When using the Field Extractor (FX) to perform a field extraction, which delimiter can be used?
Which of the following definitions describes a macro named "samplemacro" that accepts two arguments?
When using a field value variable with a Workflow Action, which punctuation mark will escape the data
Which of the following describes this search?
New Search
'third_party_outages(EMEA,-24h)'
Which option of the transaction command would be used to specify the maximum time between events in a transaction?
In the Field Extractor Utility, this button will display events that do not contain extracted fields.
Select your answer.
Which of the following options should a user add to a search to limit transactions to a five minute time window?
Two separate results tables are being combined using the join command. The outer table has the following values:
The inner table has the following values:

The line of SPL used to join the tables is: join employeeNumber type=outer
How many rows are returned in the new table?
Which of the following is included with the Common Information Model (CIM) add-on?
These allow you to categorize events based on search terms.
Select your answer.
Based on the macro definition shown below, what is the correct way to execute the macro in a search string?

If a calculated field has the same name as an extracted field, what happens to the extracted field?
A Splunk app is configured to extract domain names in web service logs and specify them as a field named domain.
What workflow action would return an external IP lookup for the field named domain?
In most large Splunk environments, what is the most efficient command that can be used to group events by fields/
Which of the following commands connects an additional table of data directly to the right side of the existing table?
What does the fillnull command do in this search?
index=main sourcetype=http:log | fillnull value="Unknown"
What does the fillnull command replace null values with, if the value argument is not specified?
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")
Information needed to create a GET workflow action includes which of the following? (select all that apply.)
A user runs the following search:
index—X sourcetype=Y I chart count (domain) as count, sum (price) as sum by product, action usenull=f useother—f
Which of the following table headers match the order this command creates?
Given the following eval statement:
... | eval field1 = if(isnotnull(field1),field1,0), field2 = if(isnull(field2), "NO-VALUE", field2)
Which of the following is the equivalent using fillnull?