-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/dev' into alerts
- Loading branch information
Showing
4 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Intrinsic | ||
|
||
The `intrinsic` module extracts enumerated values that were created at ingest time to a given search. By default, when using the text or raw renderers, all intrinsic enumerated values are added to the search. When using any other render module, such as table, the intrinsic module must be used. | ||
|
||
## Supported Options | ||
|
||
The intrinsic module has no flags. | ||
|
||
## Arguments and syntax | ||
|
||
The intrinsic module simply takes a list of enumerated values to extract, and optionally a filter for each enumerated value. | ||
|
||
For example, to extract the enumerated values "foo" and "bar": | ||
|
||
```gravwell | ||
tag=data intrinsic foo bar | table | ||
``` | ||
|
||
Additionally, to filter "foo" to just entries where foo is equal to "potato": | ||
|
||
```gravwell | ||
tag=data intrinsic foo == "potato" bar | table | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters