me Flashcards
Which search string only returns events from hostWWW3
host=WWW3
By default, how long does Splunk retain a search job?
10 Minutes
What must be done before an automatic lookup can be created?
The lookup definition must be created.
Which of the following Splunk components typically resides on the machines where data originates?
Forwarder
What determines the scope of data that appears in a scheduled report?
The owner of the report can configure permissions so that the report uses either the User role or the owner’s profile at run time
When writing searches in Splunk, which of the following is true about Booleans?
They must be uppercase.
Which of the following searches would return events with failure in index netfw or warn or critical in index netops
(index=netfw failure) OR (index=netops (warn OR critical))
Select the answer that displays the accurate placing of the pipe in the following search string:
index=security sourcetype=access_* status=200 stats count by price
index=security sourcetype=access_* status=200 | stats count by price
Which of the following constraints can be used with the top command?
limit
When editing a dashboard, which of the following are possible options?
Modify the chart type displayed in a dashboard panel.
When running searches, command modifiers in the search string are displayed in what color?
Orange
Which of the following represents the Splunk recommended naming convention for dashboards?
Group_Object_Description
How can search results be kept longer than 7 days?
By changing the job settings
Which of the following is a Splunk search best practice?
Filter as early as possible
When looking at a dashboard panel that is based on a report, which of the following is true?
You cannot modify the search string in the panel, but you can change and configure the visualization.
Which of the following are common constraints of the top command?
limit, count
When displaying results of a search, which of the following is true about line charts?
Line charts are optimal for multiple series with 3 or more columns
How are events displayed after a search is executed?
in reverse chronological order
Which of the following is true about user account settings and preferences?
Full name, time zone, and default app can be defined by clicking the login name in the Splunk bar.
What is a primary function of a scheduled report?
Triggering an alert in your Splunk instance when certain conditions are met.
After running a search, what effect does clicking and dragging across the timeline have?
Moves to past or future events.
Which command is used to review the contents of a specified static lookup file?
inputlookup
What must be done in order to use a lookup table in Splunk?
The lookup file must be uploaded to Splunk and a lookup definition must be created.
When sorting on multiple fields with the sort command, what delimiter can be used between the field names in the search?
,
Which time range picker configuration would return real-time events for the past 30 seconds?
Real-time - Earliest: 30-seconds ago, Latest: Now
What is the correct syntax to count the number of events containing a vendor_action field?
stats count (vendor_action)
What is one benefit of creating dashboard panels from reports
It makes the dashboard more efficient because it only has to run one search string.
By default, which of the following fields would be listed in the fields sidebar under interesting Fields?
host
Which of the following statements about case sensitivity is true?
Field names ARE case sensitive; field values are NOT.
What does the rare command do?
Returns the least common field values of a given field in the results.
When an alert action is configured to run a script, Splunk must be able to locate the script.
Which is one of the directories Splunk will look in to find the script?
$SPLUNK_HOME/bin/scripts
Which Boolean operator is always implied between two search terms, unless otherwise specified?
AND
What does the values function of the stats command do?
Returns a count of unique values for a given field.
Which stats command function provides a count of how many unique values exist for a given field in the result set?
dc(field)
A collection of items containing things such as data inputs, UI elements, and knowledge objects is known as what?
An app
Which statement is true about Splunk alerts?
Alerts are based on searches that are either run on a scheduled interval or in real-time.
What is the purpose of using a by clause with the stats command?
To group the results by one or more fields.
How do you add or remove fields from search results?
Use fields +to add and fields –to remove
A field exists in search results, but isn’t being displayed in the fields sidebar.
How can it be added to the fields sidebar?
Click All Fields and select the field to add it to Selected Fields.
In the fields sidebar, which character denotes alphanumeric field values?
a
What is the main requirement for creating visualizations using the Splunk UI?
Your search must transform event data into XML formatted data first.
What syntax is used to link key/value pairs in search strings?
action=purchase
What user interface component allows for time selection?
Time range picker
Which of the following searches will return results where fail, 400, and error exist in every event?
error AND (fail OR 400)
When placed early in a search, which command is most effective at reducing search execution time?dedup
dedup
Which of the following is the most efficient filter for running searches in Splunk?
sourcetype
How does Splunk determine which fields to extract from data?
Splunk automatically discovers many fields based on sourcetype and key/value pairs found in the data.
Which of the following file types is an option for exporting Splunk search results?
What syntax is used to link key/value pairs in search strings?
Relational operators such as =,
Which search string returns a filed containing the number of matching events and names that field Event Count?
index=security failure | stats count by “Event Count”
Which search would return events from the access_combined sourcetype?
Sourcetype=access_combined
Which of the following index searches would provide the most efficient search performance?
index=web OR index=s*
What is a suggested Splunk best practice for naming reports?
Use a consistent naming convention so they are easily separated by characteristics such as group and object.
In a deployment with multiple indexes, what will happen when a search is run and an index is not specified in the search string?
Events from every index searched by default to which the user has access will be returned.
When looking at a statistics table, what is one way to drill down to see the underlying events?
Clicking on any field value in the table
In the Splunk interface, the list of alerts can be filtered based on which characteristics?
App, Time Window, Type, and Severity
What are the steps to schedule a report?
After saving the report, click Schedule.
In the fields sidebar, what indicates that a field is numeric?
A # symbol to the left of the field name.
Which of the following are functions of the stats command?
sum, avg, values
At index time, in which field does Splunk store the timestamp value?
_time
Which of the following is a best practice when writing a search string?
Avoid using formatting clauses, as they add too much overhead.
What type of search can be saved as a report?
Any search can be saved as a report
What can be included in the All Fields option in the sidebar?
field descriptions
When viewing the results of a search, what is an Interesting Field?
A field that appears in at least 20% of the events.
When a Splunk search generates calculated data that appears in the Statistics tab, in what formats can the results be exported?
CSV, XML, JSON
Which search matches the events containing the terms “error” and “fail”
index=security error OR fail
Which of the following is an option after clicking an item in search results?
adding the item to the search
Which of the following fields is stored with the events in the index?
source
Which of the following is the recommended way to create multiple dashboards displaying data from the same search?
Export the results of the search to an XML file and use the file as the basis of the dashboards.