New Flashcards

1
Q

When can a pipe follow a macro?

A. A pipe may always follow a macro. Most Voted
B. The current user must own the macro.
C. The macro must be defined in the current app.
D. Only when sharing is set to global for the macro.

A

A. A pipe may always follow a macro.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Data Models

A

Data models drive the pivot toool.
Data models enable users of Pivot to create compelling reports and dashboards without designing the searches that generate them

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Data models are composed of one or more of which of the following datasets? (Choose all that apply.)

A. Events datasets
B. Search datasets
C. Transaction datasets
D. Any child of event, transaction, and search datasets

A

A, B, and C

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Pivot Tool

A

A table, chart, or visualization based on a data model dataset.
Used by users that dont need to know SPL

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Splunk shows data in _____ .

A.
ASCII Character order.

B.
Reverse chronological order.

C.
Alphanumeric order.

D.
Chronological order.

A

B.
Reverse chronological order

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How to tell if a field exists

A

The EXISTS operator

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Head command

A

The “head” command in Splunk is used to limit the number of events returned by a search. By specifying a numeric value with the “head” command, you can restrict the search results to only display a certain number of events from the beginning of the results set.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

limit command

A

The “limit” command is used in Splunk to restrict the number of search results returned. It helps control the volume of data displayed and enhances search performance by reducing the data set.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

drilldown

A

Configured within individual vizualizations

Drilldown is a tool for configuring responses to user clicks on visualizations in a dashboard or form.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

dropdown

A

Use this input to let users choose one option from a dropdown menu.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Which command is used to create a lookup table in Splunk?

a) inputlookup

b) outputlookup

c) evallookup

d) createlookup

A

b) outputlookup

The correct command to create a lookup table in Splunk is the “outputlookup” command. This command allows you to output the results of a search into a lookup table.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Which command is used to perform a lookup in Splunk?

a) inputlookup

b) outputlookup

c) evallookup

d) searchlookup

A

a) inputlookup

The “inputlookup” command is used to perform a lookup in Splunk. This command allows you to search and retrieve data from an existing lookup table.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How can you associate a lookup table with your data during the indexing process in Splunk?

a) By configuring props.conf and transforms.conf.

b) By using the append command in a search pipeline.

c) By applying field extractions to the lookup table.

d) By defining a lookup definition file.

A

a) By configuring props.conf and transforms.conf.

To associate a lookup table with your data during the indexing process in Splunk, you need to configure props.conf and transforms.conf. These configuration files allow you to define rules that specify which lookup table to use based on specific criteria, such as sourcetype or source.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the purpose of using a cron schedule for a scheduled report in Splunk?

a) To specify the time zone for the report

b) To define the search string for the report

c) To schedule the report to run at specific time intervals

d) To enable real-time monitoring for the report

A

c) To schedule the report to run at specific time intervals

A cron schedule is used in Splunk to define the specific time intervals at which a scheduled report should run.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Machine data makes up for more than ___% of the data accumulated by organizations.

A

90

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Which apps ship with Splunk Enterprise?

(Select all that apply.)

A) Home App
B) Sideview Utils
C) Search & Reporting
D) DB Connect

A

A) Home App
C) Search & Reporting

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

The default username and password for a newly installed Splunk instance is:

A) username and password
B) admin and changeme
C) admin and 12345
D) buttercup and rawks

A

B) admin and changeme

18
Q

To keep from overwriting existing fields with your Lookup you can use the _________ clause.

A

OUTPUTNEW

19
Q

What is a transforming command?

A

A type of search command that orders the results into a data table. Transforming commands “transform” the specified cell values for each event into numerical values that Splunk Enterprise can use for statistical purposes.

20
Q

What are seven common transforming commands?

A

Transforming commands include:
1) chart
2) timechart
3) stats
4) top
5) rare
6) contingency
7) highlight.

21
Q

What does CIM stand for and what is it?

A

Common Information Model (CIM).

A shared semantic model focused on extracting value from data.

22
Q

What is pivot?

A

Pivot is a command that applies a pivot operation to data.

For example: This command counts the number of events in the “HTTP Requests” object in the “Tutorial” data model.

…| pivot Tutorial HTTP_requests count(HTTP_requests) AS “Count of HTTP requests”

23
Q

What are the three required parts of a pivot?

A

The pivot command is a generating command and must be first in a search pipeline. It requires a large number of inputs: the data model, the data model object, and pivot elements.

…| pivot <datamodel-name> <object-name> <pivot-element></pivot-element></object-name></datamodel-name>

24
Q

What does SPL stand for and what are some of it’s features?

A

Search Processing Language (SPL)

It is Splunk’s proprietary language. SPL encompasses all the search commands and their functions, arguments, and clauses. Its syntax was originally based on the Unix pipeline and SQL. The scope of SPL includes data searching, filtering, modification, manipulation, insertion, and deletion.

25
Q

What is the difference between stats, chart, and time chart?

A

Stats: Tabular format that allows unlimited fields.

Chart: Graphical format that allows two fields (x and y axis) and can be pie chart, bar chart, line chart etc.

Time Chart: Allows display in bar or line graph format, and only takes in one field because it uses time for the X axis.

26
Q

What are the five default fields for every event in Splunk?

A

1) host
2) source
3) source type
4) index
5) timestamp

27
Q

What are the five Splunk data bucket ages, from most current to oldest?

A

1) Hot
2) Warm
3) Cold
4) Frozen
5) Thawed

27
Q

What does a generating command do?

A

A generating command fetches information from the indexes, without any transformations.

Generating commands are either event-generating (distributable or centralized) or report-generating. Most report-generating commands are also centralized. Depending on which type the command is, the results are returned in a list or a table.

28
Q

What does the metadata command do?

A

The metadata command returns a list of sources, sourcetypes, or hosts from a specified index or distributed search peer.

For Example: …| metadata type=hosts

28
Q

What is the Splunk data inspector process?

A

1) Look at data and decide how to process it.
2) Label data by source type.
3) Break data into events.
4) Normalize timestamps.
5) Added to Splunk index to be searched

29
Q

What is the job of the Search Head?

A

Handle search requests using Splunk search language. Enriches data with reports, dashboards, visualizations.

sends its searches to indexer

30
Q

What are the benefits of a Search Head Cluster?

A

1) Services more users.
2) Allows users and searches to share resources.
3) Distribute requests across the set of indexers.

31
Q

What are the benefits of a traditional Index Cluster?

A

1) Replicate data.
2) Prevent data loss.
3) Promote availability.
4) Manage multiple indexers.

32
Q
A
33
Q

Which ports are required for Splunk?

A

1) splunkweb, port 8000
2) splunkd, port 8089
3) forwarder, port 9997

34
Q

While Splunk starts automatically on Windows after installation, to automatically start Splunk on a Linux a user is required to enable…

A

boot-start

35
Q

What is the URL used by administrators for creating and installing additional Splunk apps?

A

splunkbase.splunk.com

36
Q

What are the three options for adding app data?

A

1) Upload
2) Monitor
3) Forward

37
Q

which parts are the field names, field values, and delimiters?…

icmp_seq=0
ttl=64

A

which parts are the field names, field values, and delimiters?…

icmp_seq=0
ttl=64

38
Q

In regards to the Data Summary window, what is the difference between: Host, Source, and Sourcetype?

A

Host: A semi-unique identifier, such as host name, IP address, etc.
Source: Name of the file, stream, path, etc.
Sourcetype: The product or software type, such as cisco_asa, ps, win_audit, etc.

39
Q

What is the benefit of using a monitor over a forwarder?

A

A monitor sends event data as it happens, rather than on a schedule, allowing near real time information.

40
Q
A