Configure inline extractions
Inline field extractions are field extractions that are configured within props.conf
.You can have one regular expression per field extraction configuration. See About configuration files in the Admin manual.
Use inline field extractions when you:
- Have one regular expression per field extraction configuration
- Have a simple setup with one regular expression, and you want to extract multiple fields
- Want to create a new field by configuring an extraction
Inline extractions and the search-time operations sequence
Search-time operations order
Inline field extractions come second in the search-time operation sequence.
Restrictions
Because inline field extractions are near the top of the search-time operation sequence, they cannot reference fields that are derived and added to events by other search-time operations that come later.
For more information
For more information, see The sequence of search-time operations.
Configure an inline search-time field extraction
Inline search-time field extractions use the EXTRACT extraction configuration in props.conf
. Each EXTRACT extraction stanza contains the regular expression to extract fields at search time, and other attributes that govern the way those fields are extracted.
Prerequisites
Review the following topics.
- About default fields (host, source, source type, and more) for information about hosts, sources, and sourcetypes.
- fields.conf for information about adding an entry to
fields.conf.
- Regular expressions and field name syntax for information about field-extracting regular expressions.
- Create a field from a subtoken for information subtoken field extraction.
- Access to the
props.conf
located in$SPLUNK_HOME/etc/system/local/
, or in your custom app directory in$SPLUNK_HOME/etc/apps/
.
Caution: Do not edit files in $SPLUNK_HOME/etc/system/default/
. A subsequent upgrade or migration will overwrite your configuration and cause Splunk software to fail.
Steps
- Identify the source type, source, or host that provide the events that your field should be extracted from.
All extraction configurations inprops.conf
are restricted to a specific source, source type, or host. - Configure a regular expression that identifies the field in the event.
- Follow the format for the EXTRACT field extraction type to configure a field extraction stanza in
props.conf
that includes the host, source, or sourcetype for the event and the regular expression that you have configured. - If your field value is a subtoken, you must also add an entry to
fields.conf
. - Restart Splunk Enterprise.
EXTRACT field extraction configuration syntax
<spec> options
[<spec>] EXTRACT-<class> = [<regular_expression>|<regular_expression> in <string>]
<spec>
Syntax: <source type>| host::<host> | source::<source> | rule::<rulename>| delayedrule::<rulename>
<spec> | Description |
---|---|
<source type> |
Source type of an event |
host::<host> |
Host for an event |
source::<source> |
Source for an event |
rule::<rulename> |
Unique name of a source type classification rule. |
delayedrule::<rulename> |
Unique name of a delayed source type classification rule. |
Before using rule
or delayedrule
, try generating a new source type based on the source seen by Splunk software.
EXTRACT configuration attributes
EXTRACT-<class> | Description |
---|---|
<class> |
A unique literal string that identifies the namespace of the field you're extracting. <class> values do not have to follow field name syntax restrictions and are not subject to key cleaning. |
<regular_expression> |
Required to have named capturing groups. Each group represents a different extracted field. When the <regular_expression> matches an event, the named capturing groups and their values are added to the event. |
<regular_expression> in <source_field> |
Matches a regular expression against the values of a specific field. Otherwise it matches all raw event data. |
<regular_expression> in <string> |
When <string> is not a field name, change the regular expression to end with [i]n <string> to ensure that Splunk software does not match <string> to a field name. |
Configure custom fields at search time | Configure advanced extractions with field transforms |
This documentation applies to the following versions of Splunk Cloud Platform™: 8.2.2112, 8.2.2201, 8.2.2202, 8.2.2203, 9.0.2205, 9.0.2208, 9.0.2209, 9.0.2303, 9.0.2305, 9.1.2308, 9.1.2312, 9.2.2403, 9.2.2406 (latest FedRAMP release)
Feedback submitted, thanks!