Splunk Core Power User Flashcards

0.0(0)
studied byStudied by 2 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/90

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

91 Terms

1
New cards

This Workflow Action type directs users to a specified URI.

GET

2
New cards

Who can create data models?

Administrators

3
New cards

What should knowledge objects be named by?

6 segmented keys

4
New cards

Data models for CIM are in what format?

.json

5
New cards

What is the main difference between Hot and Warm bucket?

Hot is writable by Splunk

6
New cards

Why is there a warm and cold bucket?

Cold buckets are generally searched less frequently and stored in a different location, this means they can be stored on cheaper media with slower I/O speeds.

7
New cards

What are the 4 buckets Splunk used to store data?

Hot
Warm
Cold
Frozen

8
New cards

Data Interpretation is made up of:

fields
field extraction

9
New cards

Data classification is made up of:

Event types

10
New cards

Data enrichment is made up of:

Lookups
Workflow Actions

11
New cards

Normalisation is made up of:

Tags
Field aliases

12
New cards

Data sets are made up of:

Data models

13
New cards

Workflow Actions can only be applied to a single field.

False

14
New cards

___________ datasets can be added to a root dataset to narrow down the search.

Child

15
New cards

Which of these are NOT Data Model dataset types:

Lookups

16
New cards

Fields used in Data Models must already be extracted before creating the datasets.

False

17
New cards

You can normalize data for CIM use:

- At index time.
- Using Knowledge Objects.

18
New cards

The CIM schema should be used when creating Field Extraction, Aliases, Event Types, and Tags.

True

19
New cards

The data models in the CIM Add-on are accelerated by default.

False

20
New cards

Which command removes results with duplicate field values?

Dedup

21
New cards

Field values are case sensitive.

False

22
New cards

These are booleans in the Splunk Search Language.

- AND
- NOT
- OR

23
New cards

When searching, field values are case:

insensitive

24
New cards

Time is the most efficient filter you can apply to a search.

True

25
New cards

Warm buckets in Splunk indexes are named by:

The time of first and last events inside

26
New cards

The _____________ clause allows you to define which fields represented on the X axis of a chart.

over

27
New cards

Which type of visualization allows you to show a third dimension of data?

bubble chart

28
New cards

Which option is NOT available with the chart and timechart commands?

usefill

29
New cards

The geom command allows you to create:

chloropleth maps

30
New cards

This command will compute the sum of numeric fields within events and place the result in a new field:

addtotals

31
New cards

Which of the following are valid options with the chart command?

useother, usenull, limit

32
New cards

What is wrong with the following search syntax:
sourcetype=vendor_sales | eval SalesTerritory=if((VendorID >= 7000 AND VendorID < 8000), Asia, "Rest of the World") | stats sum(price) as TotalRevenue by SalesTerritory

Asia is not in double quotes

33
New cards

The eval commmand 'if' function requires the following three arguments (in order):

boolean expression, result if true, result if false

34
New cards

If the destination field for the eval command already exists, it is:

overwritten

35
New cards

The maxpause definition:

Finds groups of events where the span of time between included events does not exceed a specific value.

36
New cards

Which is not a comparison operator in Splunk?

?=

37
New cards

How is the asterisk used in Splunk search?

As a wildcard

38
New cards

How many results are shown by default when using a Top of Rare Command?

10

39
New cards

The search job inspector shows you how long a given search took to run.

True

40
New cards

Which of the following is NOT a stats function:

addtotals

41
New cards

Bucket names in Splunk indexes are used to :

determine if the bucket should be searched based on the time range of the search.

42
New cards

Which of these search strings is NOT valid?

index=web status=50* | chart count over host, status

43
New cards

The timechart command buckets data in time intervals depending on:

the selected time range

44
New cards

In this search, ________ will appear on the y-axis. SEARCH: sourcetype=access_combined status!=200 | chart count over host

count

45
New cards

If a search returns __________ it can be viewed as a chart.

statistics

46
New cards

The _____ axis should always be numeric.

Y

47
New cards

The trendline command requires the following three arguments:

trend type, time period, and field.

48
New cards

The iplocation and geostats commands can be used together.

True

49
New cards

Which command is used to create choropleth maps?

geom

50
New cards

The iplocation command:

returns location information for events that include external IP addresses.

51
New cards

If you want to format values without changing their characteristics, which would you use?

The fieldformat question command

52
New cards

If the destination field for the eval command already exists, it is:

overwritten by the new field defined in the eval command.

53
New cards

By default, the fillnull Command replaces null values with:

0

54
New cards

The ___________ function of the eval command can take multiple boolean arguments.

case

55
New cards

What will you learn from the results of the following search?
sourcetype=cisco_esa | transaction mid, dcid, icid | timechart avg(duration)

The average time elapsed during each transaction for all transactions.

56
New cards

The transaction command allows you to ___________ events across multiple sources.

correlate

57
New cards

You can create a transaction based on multiple fields.

True

58
New cards

Which function should you use with the transaction command to set the maximum total time between the earliest and latest events returned.

maxspan

59
New cards

Knowledge Objects should be named generically as possible.

False

60
New cards

What are the predefined ways Knowledge Objects can be shared?

- Private
- Specific Aps

61
New cards

Which users can create private Knowledge Objects?

- Admin
- User
- Power

62
New cards

Knowledge objects are automatically shared with all users.

False

63
New cards

In the Field Extractor Utility, this button will display events that do not contain extracted fields.

Non-matches

64
New cards

Once a field is created using the regex method, you cannot modify the underlying regular expression.

False

65
New cards

During the validation step of the Field Extractor workflow:

You can remove values that aren't a match for the field you want to define.

66
New cards

When extracting fields, we may choose to use our own regular expression.

True

67
New cards

After editing your regular expression from the Field Extractor Utility, you will be returned to the utility.

False

68
New cards

Field aliases can only be applied to a single source type, source, or host.

False

69
New cards

Field aliases are used to ________ data.

normalize

70
New cards

A field can only have one field alias.

False

71
New cards

Calculated fields are based on underlying:

eval expressions

72
New cards

Once a field alias is created:

You can still use the original field name to search

73
New cards

Which search would limit an "alert" tag to the "host" field?

tag::host=alert

74
New cards

You can only add one tag per field value pair.

False

75
New cards

These allow you to categorize events based on search terms,

Event Types

76
New cards

Event Types do not show up in the Field List.

False

77
New cards

Tags are descriptive names for:

Key Value Pairs

78
New cards

The number of arguments in a macro must be included in the macro name.

True

79
New cards

You can pipe the results of a macro to other commands

True

80
New cards

What is the correct way to name a macro with two arguments?

us_sales(2)

81
New cards

What is the proper syntax for using a macro named "us_sales"

'us_sales'

82
New cards

Search Macros:

- Are time-range independent
- Can pass arguments to the search
- Allow you to store entire search strings, including pipes, and eval statements.

83
New cards

To use field value data from an event in a Workflow Action, we need to:

Wrap the field in dollar signs.

84
New cards

This Workflow Action type sends field values to external resources.

POST

85
New cards

When using a field value variable with a Workflow Action, which puncvtuation mark will escape the data?

!

86
New cards

Required fields in a data model:

Constrains the dataset to only return events that include that field

87
New cards

The only way to access and use a dataset is from the Pivot interface.

False

88
New cards

Hidden fields in a data model:

Will not be displayed to a Pivot user, but can be used to define other datasets

89
New cards

By default, data models in the CIM Add-on will search across all indexes.

True

90
New cards

The Splunk CIM Add-on includes data models in a ______________ format.

JSON

91
New cards

The CIM schema should be used when creating Field Extractions, Aliases, Event Types, and Tags.

True