Use CASE() and TERM() to match phrases (2024)

If you want to search for a specific term or phrase in your Splunk index, use the CASE() or TERM() directives to do an exact match of the entire term.

CASE
Syntax: CASE(<term>)
Description: Search for case-sensitive matches for terms and field values.
TERM
Syntax: TERM(<term>)
Description: Match whatever is inside the parentheses as a single term in the index, even if it contains characters that are usually recognized as minor breakers, such as periods or underscores.

The CASE() and TERM() directives are similar to the PREFIX() directive used with the tstats command because they match strings in your raw data. For more information about the PREFIX() directive, see tstats in the Search Reference.

When to use CASE

By default, searches are case-insensitive. For example, if you search for Error, any case of that term is returned, such as Error, error, and ERROR. You can use the CASE directive to perform case-sensitive matches for terms and field values. For example, if you search for CASE(error), your search returns results containing only the specified case of the term, which is error.

You can use the CASE directive to search for terms using wildcards. For example, searching for CASE(%ASA-1*) returns events matching values such as %ASA-1-134568 and %ASA-1-12345.

Example

The following search only matches events that contain localhost in uppercase in the host field.

host=CASE(LOCALHOST)

When to use TERM

The TERM directive is useful for more efficiently searching for a term that:

  • Contains minor breakers, such as periods or underscores.
  • Is bound by major breakers, such as spaces or commas.
  • Does not contain major breakers.

When data is indexed, characters such as periods and underscores are recognized as minor breakers between terms. Use the TERM directive to ignore the minor breakers and match whatever is inside the parentheses as a single term. For example, the IP address 127.0.0.1 contains the period ( . ) minor breaker. If you search for the IP address 127.0.0.1, Splunk software searches for 127 AND 0 AND 1 and returns events that contain those numbers anywhere in the event. If you specify TERM(127.0.0.1), the search treats the IP address as a single term, instead of individual numbers, and returns all events that contain the IP address 127.0.0.1.

The TERM directive only works for terms that are bounded by major or minor breakers, but the term you are searching for cannot contain major breakers. For example, you cannot use TERM to search for Maria Dubois because there is a space between the names. This is discussed in the examples later in this topic.

When you use the TERM directive, the Splunk software expects to see the term you specify as a token in the lexicon in the .tsidx file. For more information about how Splunk software breaks events up into searchable segments, see About segmentation in Getting Data In.

You can use the TERM directive to search for terms using wildcards. For example, searching for TERM(%ASA-1*) returns events matching values such as %ASA-1-134568 and %ASA-1-12345.

See Use the TERM directive to match terms that contain minor breakers.

Using TERM() with major and minor breakers

Searches that contain the TERM() directive might return unexpected results if the following conditions are met:

  • The term in the TERM directive contains minor breakers, such as a period (.); and
  • The raw data for the term is bound by major breakers that end in a number or letter; and
  • The search contains other expressions such as host=*, sourcetype=* or myfield=*, OR contains other expressions that include minor breakers, such as "myfield1.myfield2", "myfield1:myfield2".

For example, say your raw data is foo%20www.something.com%20abc 127.1.1, which includes the major breaker %20. The following searches don't return results:

  • index=main TERM(www.something.com) host=*
  • index=main TERM(www.something.com) "127.1.1"

However, the following search does return results:

  • index=main TERM(www.something.com)

For a full list of minor breakers and multicharacter major breakers, see the segmenters.conf file in the Splunk Enterprise Admin Manual.

Examples

Searching for TERM(127.0.0.1) works for raw data that looks like this:

127.0.0.1 - admin

Both 127.0.0.1 and admin are bounded by major breakers, in this case spaces.

However, searching for TERM(127.0.0.1) fails for data that looks like this:

ip=127.0.0.1 - user=admin

This is because the equal symbol ( = ) is a minor breaker, not a major breaker. Additionally, the IP address portion of the event is indexed as: ip, 127, 0, 1, and ip=127.0.0.1. You are looking for 127.0.0.1, which is not an indexed term.

If your data looks like this:

ip 127.0.0.1 - user admin

Searching for TERM(user admin) fails to return results. The space is a major breaker and the phrase "user admin" is not indexed as a single term. In this situation, use quotation marks to search for a string that contains a space, for example "user admin".

See also

Related information
Event segmentation and searching

Last modified on 15 July, 2024

Event segmentation and searchingBoolean expressions

This documentation applies to the following versions of Splunk® Enterprise: 7.0.0, 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.9, 8.0.10, 7.0.1, 8.0.8, 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.11, 8.1.12, 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.2.0, 9.2.1, 9.2.2, 9.3.0, 8.1.0, 8.1.1, 8.1.10

Use CASE() and TERM() to match phrases (2024)
Top Articles
Stanley Cup Final preview: Players to watch, goalie confidence levels, top trends
The Best Outdoor Motion Sensor Lights for All of Your Security Needs
The Tribes and Castes of the Central Provinces of India, Volume 3
Cold Air Intake - High-flow, Roto-mold Tube - TOYOTA TACOMA V6-4.0
Katmoie
Craigslist Pet Phoenix
Zitobox 5000 Free Coins 2023
The Pope's Exorcist Showtimes Near Cinemark Hollywood Movies 20
Clafi Arab
Irving Hac
My Vidant Chart
4Chan Louisville
Chicken Coop Havelock Nc
iOS 18 Hadir, Tapi Mana Fitur AI Apple?
Quest Beyondtrustcloud.com
Vermont Craigs List
Craigslist Missoula Atv
north jersey garage & moving sales - craigslist
Scream Queens Parents Guide
Craigslist Apartments Baltimore
Troy Gamefarm Prices
Craigslist Panama City Beach Fl Pets
Pawn Shop Moline Il
Mdt Bus Tracker 27
1773x / >
Dexter Gomovies
Possum Exam Fallout 76
Log in or sign up to view
Korg Forums :: View topic
Mastering Serpentine Belt Replacement: A Step-by-Step Guide | The Motor Guy
King Soopers Cashiers Check
Alima Becker
Fedex Walgreens Pickup Times
How To Make Infinity On Calculator
Roadtoutopiasweepstakes.con
First Light Tomorrow Morning
Mega Millions Lottery - Winning Numbers & Results
Ultra Clear Epoxy Instructions
Nsu Occupational Therapy Prerequisites
Wo ein Pfand ist, ist auch Einweg
SF bay area cars & trucks "chevrolet 50" - craigslist
Sun Tracker Pontoon Wiring Diagram
Torrid Rn Number Lookup
COVID-19/Coronavirus Assistance Programs | FindHelp.org
Cocorahs South Dakota
Free Crossword Puzzles | BestCrosswords.com
✨ Flysheet for Alpha Wall Tent, Guy Ropes, D-Ring, Metal Runner & Stakes Included for Hunting, Family Camping & Outdoor Activities (12'x14', PE) — 🛍️ The Retail Market
Sky Dental Cartersville
Every Type of Sentinel in the Marvel Universe
El Patron Menu Bardstown Ky
ats: MODIFIED PETERBILT 389 [1.31.X] v update auf 1.48 Trucks Mod für American Truck Simulator
Coors Field Seats In The Shade
Latest Posts
Article information

Author: Chrissy Homenick

Last Updated:

Views: 6088

Rating: 4.3 / 5 (54 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Chrissy Homenick

Birthday: 2001-10-22

Address: 611 Kuhn Oval, Feltonbury, NY 02783-3818

Phone: +96619177651654

Job: Mining Representative

Hobby: amateur radio, Sculling, Knife making, Gardening, Watching movies, Gunsmithing, Video gaming

Introduction: My name is Chrissy Homenick, I am a tender, funny, determined, tender, glorious, fancy, enthusiastic person who loves writing and wants to share my knowledge and understanding with you.