Change the format of subsearch results
When you use a subsearch, the format
command is implicitly applied to your subsearch results. The format
command changes the subsearch results into a single linear search string. This is used when you want to pass the values in the returned fields into the primary search.
If your subsearch returned a table, such as:
| field1 | field2 | ------------------- event/row1 | val1_1 | val1_2 | event/row2 | val2_1 | val2_2 |
The format
command returns:
(field1=val1_1 AND field2=val1_2) OR (field1=val2_1 AND field2=val2_2)
For more information, see the format command.
Formatting exceptions
There are a couple of exceptions to the formatting that the format
command performs.
- All internal fields, fields that begin with a leading underscore ( _ ) character, are ignored and not formatted as a linear search string.
- If the name of a field is either
search
orquery
, the values of fields are rendered directly in the reformatted search string.
The search and query fields
You can rename a field to either search
or query
to change the format of the subsearch results. Renaming a field to search
or query
is a special use case. When you rename your fields to anything else, the subsearch returns the new field names that you specify.
Using the search field name
Use the search
field name and the format
command when you need to append some static data or apply an evaluation on the data in the subsearch. You can then pass the data to the primary search. For example, you rename the second field in the search results to search
, as shown in the following table:
| field1 | search | ------------------- event/row1 | val1_1 | val1_2 | event/row2 | val2_1 | val2_2 |
Then using the format
command returns:
(field1=val1_1 AND val1_2) OR (field1=val2_1 AND val2_2)
Instead of
(field1=val1_1 AND field2=val1_2) OR (field1=val2_1 AND field2=val2_2)
For multivalue fields, when you use the search
field name, the first value of the field is used as the actual search term.
Using the query field name
Use the query
field name when you want the values in the fields returned from the subsearch, but not the field names.
The query
field name is similarly to using the format
command. Instead of passing the field and value pairs to the main search, such as:
(field1=val1_1 AND field2=val1_2) OR (field1=val2_1 AND field2=val2_2)
Using the query
field name passes only the values:
(val1_1 AND val1_2) OR (val2_1 AND val2_2)
Examples
The following search looks for a value in the clID
field that is associated with a name token or field value. The clID value is then used to search for several sources.
index=myindex [search index=myindex host=myhost MyName | top limit=1 clID | fields clID ]
The subsearch returns the field and value in the format: ( (clID="0050834ja") )
To return only the value, 0050834ja
, rename the clID
field to search
in the subsearch. For example:
index=myindex [search index=myindex host=myhost MyName | top limit=1 clID | fields clID | rename clID as search ]
When the field is named search
or query
, the field name is dropped and the implicit | format
command at the end of the subsearch returns only the value.
If you return multiple values, such as specifying ...| top limit=3
, the subsearch returns each of the values with the boolean OR operator between the values. For example, if the previous search example used ...| top limit=3
, the values returned from the subsearch are ( ( value1 ) OR ( value2 ) OR ( value3 ) )
.
Use subsearch to correlate events | About transforming commands and searches |
This documentation applies to the following versions of Splunk® Enterprise: 7.0.0, 7.0.1, 7.0.2, 7.0.3, 7.0.4, 7.0.5, 7.0.6, 7.0.7, 7.0.8, 7.0.9, 7.0.10, 7.0.11, 7.0.13, 7.1.0, 7.1.1, 7.1.2, 7.1.3, 7.1.4, 7.1.5, 7.1.6, 7.1.7, 7.1.8, 7.1.9, 7.1.10, 7.2.0, 7.2.1, 7.2.2, 7.2.3, 7.2.4, 7.2.5, 7.2.6, 7.2.7, 7.2.8, 7.2.9, 7.2.10, 7.3.0, 7.3.1, 7.3.2, 7.3.3, 7.3.4, 7.3.5, 7.3.6, 7.3.7, 7.3.8, 7.3.9, 8.0.0, 8.0.1, 8.0.2, 8.0.3, 8.0.4, 8.0.5, 8.0.6, 8.0.7, 8.0.8, 8.0.9, 8.0.10, 8.1.1, 8.1.2, 8.1.3, 8.1.4, 8.1.5, 8.1.6, 8.1.7, 8.1.8, 8.1.9, 8.1.13, 8.1.14, 8.2.0, 8.2.1, 8.2.2, 8.2.3, 8.2.4, 8.2.5, 8.2.6, 8.2.7, 8.2.8, 8.2.9, 8.2.10, 8.2.11, 8.2.12, 9.0.0, 9.0.1, 9.0.2, 9.0.3, 9.0.4, 9.0.5, 9.0.6, 9.0.7, 9.0.8, 9.0.9, 9.0.10, 9.1.0, 9.1.1, 9.1.2, 9.1.3, 9.1.4, 9.1.5, 9.1.6, 9.2.0, 9.2.1, 9.2.2, 9.2.3, 9.3.0, 9.3.1, 8.1.0, 8.1.10, 8.1.11, 8.1.12
Feedback submitted, thanks!