Module 9 Creating Field Aliases and Calculated Fields Flashcards

1
Q

What do we use Field Aliases for?

A

to Normalise data over a default field (host, source or sourcetype)

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

can Multiple Aliases be applied to one field?

A

Yes

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

when are field aliases applied?

A

After field extractions and before lookups

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

True or False

Field aliases can’t be applied to lookups

A

False

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

Give a usage example for field extraction

A

Several devices have some type of username field
deviceA user, device username, DeviceC USER
we will create a UserName Filed alias

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

where do we locate the field alias tool?

A

Settings > Fields > Field Aliases > Nee Fielded Alias

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

when creating the field alias is the original field affected?

A

NO

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

True or False

Field aliases can be referenced in a lookup table

A

True

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

What is a calculated field?

A

shortcut for performing repetitive, long or complex transformations using the eval command.
Must be based on an extracted field

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

where do you create a calculated field

A

Settings > Fields > Calculated Fields > New Calculated Field

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

How does this look using the megabytes calculated field?
| eval megabytes = sc_bytes/(1024*1024)
| stats sum(megabytes) as Megabytes by usage
| sort Megabytes

A

| | sort Megabytes

stats sum(megabytes) as Megabytes by usage

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