splunk videos Flashcards
_______ and _______ are the time modifiers that override the time range picker in a historical report.
A. earliest
B. latest
C. first
D. last
B. latest
A. earliest
Using earliest=-30d@d latest=@d is how to return results from 30 days ago up until the time the search was executed.
A. TRUE
B. FALSE
B. False
What will the strftime function return when using the %H argument? Select all that apply.
A. convert the hour into your local time based on your time zone setting of your Splunk web sessions
B. time of raw event in UTC
C. hour of the event generated at index time
A. convert the hour into your local time based on your time zone setting of your Splunk web sessions
Choose the search that will sort events into one minute groups. Select all that apply.
A. | bin _time span=1m
B. | bin _time span=1mins
C. | bin span=1minutes _time
A. | bin _time span=1m
B. | bin _time span=1mins
C. | bin span=1minutes _time
When using the following search arguments, what will be returned? | timechart count span=1h
A. determine time range of events to scale
B. chart events in 1 hour chunks
C. events in the last 24 hours
D. chart only events over a 1 hour period
B. chart events in 1 hour chunks
date_time always reflects your local time zone and not the time/date from raw events.
A. True
B. False
B. False
@timeUnit will always round up and go forward through time.
A. True
B. False
B. False
Which of the following are default time fields? Select all that apply.
A. date_hour
B. date_mday
C. date_year
D. date_day
A. date_hour
B. date_mday
C. date_year
True or False: Using an OVER and a BY clause with the chart command will create a multiseries data series.
A. TRUE
B. FALSE
A. True
Which of these functions lists ALL values of the field X?
A.list(X)
B.values(X)
A. list(X)
True or False: Only one field can be created when using the eval command.
A. FALSE
B. TRUE
A. False
Which of these eval functions takes no arguments?
A. pow
B. min
C. random
D. max
C. random
When renaming fields with spaces or special characters, use the rename command and include the new field name in ___.
A. Parenthesis
B. Single quotes
C. None of the above
D. Double quotes
D. Double quotes
True or False: You can use wildcards (*) with the rename command to rename multiple fields that match a pattern.
A. FALSE
B. TRUE
B. True
When using the top command, add the BY clause to ___.
A. specify how many results to return
B. return a percentage of events
C. return results grouped by the field you specify in the BY clause
D. specify which search mode to return results by
C. return results grouped by the field you specify in the BY clause
By default, the sort command lists results in ___ order.
A. Ascending
B. Descending
A. Ascending
To round numerical values, use the ___ function of the eval command.
round
The ___(X,Y) eval function returns X to the power of Y.
pow
If you use the stats command with two functions and a BY clause, which function is the BY clause applied to?
A. both functions if they are both aggregate functions
B. the first function
C. both functions
D. the second function
C. Both functions
To display the least common values of a field, use the ___ command.
A. stats
B. top
C. timechart with common=f option
D. rare
D. rare
Use ___=false with the chart command if you want to hide the OTHER column.
useother
The ___ command will always have _time as the X-axis.
timechart
When you use the stats command with a BY clause, what is returned?
A. a statistical output for each value of the named field
B. an error message because you did not include a statistical function
C. numerical statistics on each field if and only if all of the values of that field are numerical
D. one row
A. a statistical output for each value of the named field
The eval command calculates an expression and puts the resulting ____ into a new or existing field.
A. command
B. argument
C. value
C. value
True or False: Temporary fields created by using eval can be referenced in the search pipeline following creation.
A. TRUE
B. FALSE
A. True
True or False: Specify a wildcard by using the * character with the where command.
A. TRUE
B. FALSE
B. False
Which of the following functions must be used with the in function? Select all that apply.
A. if
B. validate
C. case
D. sum
A. if
C. case
Which are the Boolean operators that can be used by the eval command? Select all that apply.
A. NAND
B. AND
C. XOR
D. OR
B. AND
C. XOR
D. OR
The where command only returns results that evaluate to TRUE.
A. FALSE
B. TRUE
B. True
True or False: eval cannot exist as an expression.
A. FALSE
B. TRUE
A. False
What is the order of Boolean Expression of Evaluation for where and eval commands?
A. Expressions with parenthesis, NOT, AND, OR
B. NOT, AND, OR, Expressions with parenthesis
C. AND, OR, NOT, Expressions with parenthesis
D. AND, NOT, Expressions with parenthesis, OR
A. Expressions with parenthesis, NOT, AND, OR
The where command interprets unquoted or single-quoted strings as _____ and double-quoted strings as _____.
A. integers, field values
B. field, field values
C. field values, fields
D. field values, integers
B. field, field values
True of False: When using the eval command, all field values are treated in a case-sensitive manner and must be double-quoted.
A.FALSE
B.TRUE
B. True
Which of the following functions can be used to filter null values?
A. usenull=f
B. usenull=t
C. isnotnull
D. isnull
C. isnotnull
D. isnull
True or False: eventstats and streamstats support multiple stats functions, just like stats.
A. True
B. False
A. True
You would use the ___ function to convert a string to uppercase and the ___ function to convert a string to lowercase.
A. lowercase(), uppercase()
B. lower(), upper()
C. uppercase(), lowercase()
D. upper(), lower()
D. upper(), lower()