Splunk SPLK-1002 Practice Test - Questions Answers, Page 29
List of questions
Related questions
Which of the following can be saved as an event type?
index=server_485 sourcetype=BETA_726 code=917 ['inputlookup append=t servercode.csv]
index=server_485 sourcetype=BETA_726 code=917 | stats where code > 200
index=server_485 sourcetype=BETA_726 code=917
index=server_485 sourcetype=BETA_726 code=917 | stats count by code
What happens to the original field name when a field alias is created?
The original field name is not affected by the creation of a field alias.
The original field name is replaced by the field alias within the index.
The original field name is italicized to indicate that it is not an alias.
The original field name still exists in the index but is not visible to the user at search time.
How could the following syntax for the chart command be rewritten to remove the OTHER category? (select all that apply)
| chart count over CurrentStanding by Action useother=f
| chart count over CurrentStanding by Action usenull-f useother-t
| chart count over CurrentStanding by Action limit=10 useother=f
| chart count over CurrentStanding by Action limit-10
What field must be present in order to use the timechart command?
_raw
rime
_time
index
Which of the following definitions describes a macro named 'samplemacro' that accepts two arguments?
Examplemacro [1,2]
samplemacro(1,2)
u amp -CJEUCXG (2)
samplemacro[2]
What is the correct Boolean order of evaluation for the where command from first to last?
NOT, Parentheses, OR, AND
AND, Parentheses, NOT, OR
Parentheses, NOT, AND, OR
Parentheses, NOT, OR, AND
How is a Search Workflow Action configured to run at the same time range as the original search?
Select the 'Overwrite time range with the original search' checkbox.
Select the 'Use the same time range as the search that created the field listing' checkbox.
Set the earliest time to match the original search.
Select the same time range from the time-range picker.
Why would the transaction command be used instead of the stats command?
The transaction command has better search-time performance.
The transaction command can perform calculations on fields.
The transaction command keeps the raw data for each event.
The transaction command is less resource-intensive.
Which of the following is true about data sets used in the Pivot tool?
They can only be created from data models.
They can only be created by users with the Admin role.
They can only be created from summary indexes.
They can only be created from saved reports.
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?
... | fillnull values=(0,'NO-VALUE') fields=(field1,field2)
There is no equivalent expression using fillnull
... | fillnull field1 | fillnull value='NO-VALUE' field2
... | fillnull value=0 field1 | fillnull field2
Question