Skip to main content

Search for events with Imply Lumi

You can search for specific events in Imply Lumi. Click Explore in the navigation menu to get started.

The explore view lists all events in Imply Lumi that occurred during a specified time period. See Tour Imply Lumi for an overview of the elements on the page.

Explore main

The events bar chart shows the number of events created during the selected time period. Click a bar and select Zoom in to filter on those events.

To search for events, you can use the search bar, the attributes panel, or a combination of both.

Prerequisites

To search for events, you need an Imply Lumi user with the Viewer role or higher. For information on roles and permissions, see Manage roles.

To search for events using the search bar:

  1. Enter your query into the search bar, or click to display a list of user attributes. See Imply Lumi query syntax for a list of supported operators and examples.

    • If you select or type the name of a user attribute followed by =, Imply Lumi displays a list of unique event data for that attribute. Select a single entry to display matching events.
    • To search by a system attribute, type a hash (#) followed by the attribute name.
  2. Use the time range selector next to the search bar to select a time range for the search. The default time range is the past 15 minutes. You can select a predefined time range or click Fixed range to set your own start and end date/time. Imply Lumi search includes the earliest time and excludes the latest time.

  3. Press Enter or click the search icon to execute the search.

  4. Click x inside the search bar to clear the search.

The following example searches for specific data in user attribute log.iostream and system attribute team for the past minute:

Example search

Click an event in the events list to see its full details:

Event details

Use the attributes panel

You can use the attributes panel to select and deselect data in user attributes.

Imply Lumi updates the search bar as you select and deselect data. Conversely, Imply Lumi updates attributes panel selections as you enter search criteria into the search bar.

The list of matching events updates if you make changes to the time range selector.

You can start a search using the attributes panel, and then modify it directly in the search bar according to your requirements.

The following example displays events that don't contain the deselected host in the past minute:

De-selected attribute search

info

If the attribute selection uses unsupported syntax, Imply Lumi displays a message, such as "Syntax [>=] used in search is not yet supported."

Imply Lumi query syntax

Imply Lumi supports the following search operators and syntax:

Operator/SyntaxUseExample
=Equal toindex=main
!=Not equal tomethod!=POST
>Greater thanbytes>5000
>=Greater than or equal todate_hour>=13
<Less thanbytes<5000
<=Less than or equal todate_mday<=4
ANDMatch both conditionsmethod=GET AND status=404
ORMatch either or both conditionssplunk_server=observe-01 OR host=web-01
NOTExclude results that match a conditionNOT uri="/register"
INMatch if a field's value is in a listuser IN (aaron94,jasmine23)
NOT INMatch if a field's value is not in a listNOT status IN (400,401,403)
(a AND b) OR cControl the order of operations of Boolean expressions(uri="/shop" AND uri_path="/shop") OR user=bernd74
attributeName=*Match when an attribute is not nullreferer=*
NOT attributeName=*Match when an attribute is null or not setNOT useragent=*
""Search for an exact phraseuseragent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)"
*Wildcard matchinguseragent="*Windows NT*"

Note the following:

  • All queries are case-sensitive.
  • You can type a space to match search conditions instead of using the AND operator, for example method=GET status=404.
  • To search for a term containing special characters, enclose it in double quotation marks (") or escape it with a backslash (\). For example, to search for the string error (critical), use the search term "error (critical)" or error \(critical\).
  • To search for a double quotation mark itself, escape it with a backslash (\). For example, to search for the string "404 not found", use the search term \"404 not found\".

See search limitations for a list of unsupported syntax elements.

Search limitations

Imply Lumi doesn't currently support the following search syntax elements:

  • Pipes to chain query operations or transform data, for example a | b
  • Approximate equals, for example attributeName~=searchterm
  • Searching JSON values within an event body
  • Splunk® Search Processing Language (SPL)