EQL search

This functionality is experimental and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but experimental features are not subject to the support SLA of official GA features.

Event Query Language (EQL) is a query language for event-based, time series data, such as logs.

Advantages of EQL

  • EQL lets you express relationships between events.
    Many query languages allow you to match only single events. EQL lets you match a sequence of events across different event categories and time spans.
  • EQL has a low learning curve.
    EQL syntax looks like other query languages. It lets you write and read queries intuitively, which makes for quick, iterative searching.
  • We designed EQL for security use cases.
    While you can use EQL for any event-based data, we created EQL for threat hunting. EQL not only supports indicator of compromise (IOC) searching but makes it easy to describe activity that goes beyond IOCs.

Required fields

While no schema is required to use EQL in Elasticsearch, we recommend using the Elastic Common Schema (ECS). EQL search is designed to work with core ECS fields by default.

EQL assumes each document in a data stream or index corresponds to an event. To run an EQL search, each document must contain a timestamp and event category field.

EQL uses the @timestamp and event.category fields from the ECS as the default timestamp and event category fields. If your documents use a different timestamp or event category field, you must specify it in the search request. See Specify a timestamp or event category field.

Run an EQL search

You can use the EQL search API to run an EQL search. For supported query syntax, see Syntax reference.

The following request searches my-index-000001 for events with an event.category of process and a process.name of regsvr32.exe. Each document in my-index-000001 includes a @timestamp and event.category field.

  1. GET /my-index-000001/_eql/search
  2. {
  3. "query": """
  4. process where process.name == "regsvr32.exe"
  5. """
  6. }

The API returns the following response. Matching events are included in the hits.events property. These events are sorted by timestamp, converted to milliseconds since the Unix epoch, in ascending order.

  1. {
  2. "is_partial": false,
  3. "is_running": false,
  4. "took": 60,
  5. "timed_out": false,
  6. "hits": {
  7. "total": {
  8. "value": 2,
  9. "relation": "eq"
  10. },
  11. "events": [
  12. {
  13. "_index": "my-index-000001",
  14. "_type": "_doc",
  15. "_id": "OQmfCaduce8zoHT93o4H",
  16. "_score": null,
  17. "_source": {
  18. "@timestamp": "2099-12-07T11:07:09.000Z",
  19. "event": {
  20. "category": "process",
  21. "id": "aR3NWVOs",
  22. "sequence": 4
  23. },
  24. "process": {
  25. "pid": 2012,
  26. "name": "regsvr32.exe",
  27. "command_line": "regsvr32.exe /s /u /i:https://...RegSvr32.sct scrobj.dll",
  28. "executable": "C:\\Windows\\System32\\regsvr32.exe"
  29. }
  30. }
  31. },
  32. {
  33. "_index": "my-index-000001",
  34. "_type": "_doc",
  35. "_id": "xLkCaj4EujzdNSxfYLbO",
  36. "_score": null,
  37. "_source": {
  38. "@timestamp": "2099-12-07T11:07:10.000Z",
  39. "event": {
  40. "category": "process",
  41. "id": "GTSmSqgz0U",
  42. "sequence": 6,
  43. "type": "termination"
  44. },
  45. "process": {
  46. "pid": 2012,
  47. "name": "regsvr32.exe",
  48. "executable": "C:\\Windows\\System32\\regsvr32.exe"
  49. }
  50. }
  51. }
  52. ]
  53. }
  54. }

Search for a sequence of events

You can use EQL’s sequence syntax to search for an ordered series of events.

The following EQL search request matches a sequence that:

  1. Starts with an event with:

    • An event.category of process
    • A process.name of regsvr32.exe
  2. Followed by an event with:

    • An event.category of file
    • A file.name that contains the substring scrobj.dll
  1. GET /my-index-000001/_eql/search
  2. {
  3. "query": """
  4. sequence
  5. [ process where process.name == "regsvr32.exe" ]
  6. [ file where stringContains(file.name, "scrobj.dll") ]
  7. """
  8. }

The API returns the following response. Matching sequences are included in the hits.sequences property.

  1. {
  2. "is_partial": false,
  3. "is_running": false,
  4. "took": 60,
  5. "timed_out": false,
  6. "hits": {
  7. "total": {
  8. "value": 1,
  9. "relation": "eq"
  10. },
  11. "sequences": [
  12. {
  13. "events": [
  14. {
  15. "_index": "my-index-000001",
  16. "_type": "_doc",
  17. "_id": "OQmfCaduce8zoHT93o4H",
  18. "_version": 1,
  19. "_seq_no": 3,
  20. "_primary_term": 1,
  21. "_score": null,
  22. "_source": {
  23. "@timestamp": "2099-12-07T11:07:09.000Z",
  24. "event": {
  25. "category": "process",
  26. "id": "aR3NWVOs",
  27. "sequence": 4
  28. },
  29. "process": {
  30. "pid": 2012,
  31. "name": "regsvr32.exe",
  32. "command_line": "regsvr32.exe /s /u /i:https://...RegSvr32.sct scrobj.dll",
  33. "executable": "C:\\Windows\\System32\\regsvr32.exe"
  34. }
  35. }
  36. },
  37. {
  38. "_index": "my-index-000001",
  39. "_type": "_doc",
  40. "_id": "yDwnGIJouOYGBzP0ZE9n",
  41. "_version": 1,
  42. "_seq_no": 4,
  43. "_primary_term": 1,
  44. "_score": null,
  45. "_source": {
  46. "@timestamp": "2099-12-07T11:07:10.000Z",
  47. "event": {
  48. "category": "file",
  49. "id": "tZ1NWVOs",
  50. "sequence": 5
  51. },
  52. "process": {
  53. "pid": 2012,
  54. "name": "regsvr32.exe",
  55. "executable": "C:\\Windows\\System32\\regsvr32.exe"
  56. },
  57. "file": {
  58. "path": "C:\\Windows\\System32\\scrobj.dll",
  59. "name": "scrobj.dll"
  60. }
  61. }
  62. }
  63. ]
  64. }
  65. ]
  66. }
  67. }

You can use the with maxspan keywords to constrain a sequence to a specified timespan.

The following EQL search request adds with maxspan=1h to the previous query. This ensures all events in a matching sequence occur within 1h (one hour) of the first event’s timestamp.

  1. GET /my-index-000001/_eql/search
  2. {
  3. "query": """
  4. sequence with maxspan=1h
  5. [ process where process.name == "regsvr32.exe" ]
  6. [ file where stringContains(file.name, "scrobj.dll") ]
  7. """
  8. }

You can further constrain matching event sequences using the by keyword.

The following EQL search request adds by process.pid to each event item. This ensures events matching the sequence share the same process.pid field value.

  1. GET /my-index-000001/_eql/search
  2. {
  3. "query": """
  4. sequence with maxspan=1h
  5. [ process where process.name == "regsvr32.exe" ] by process.pid
  6. [ file where stringContains(file.name, "scrobj.dll") ] by process.pid
  7. """
  8. }

Because the process.pid field is shared across all events in the sequence, it can be included using sequence by. The following query is equivalent to the previous one.

  1. GET /my-index-000001/_eql/search
  2. {
  3. "query": """
  4. sequence by process.pid with maxspan=1h
  5. [ process where process.name == "regsvr32.exe" ]
  6. [ file where stringContains(file.name, "scrobj.dll") ]
  7. """
  8. }

The API returns the following response. The hits.sequences.join_keys property contains the shared process.pid value for each matching event.

  1. {
  2. "is_partial": false,
  3. "is_running": false,
  4. "took": 60,
  5. "timed_out": false,
  6. "hits": {
  7. "total": {
  8. "value": 1,
  9. "relation": "eq"
  10. },
  11. "sequences": [
  12. {
  13. "join_keys": [
  14. 2012
  15. ],
  16. "events": [
  17. {
  18. "_index": "my-index-000001",
  19. "_type": "_doc",
  20. "_id": "OQmfCaduce8zoHT93o4H",
  21. "_version": 1,
  22. "_seq_no": 3,
  23. "_primary_term": 1,
  24. "_score": null,
  25. "_source": {
  26. "@timestamp": "2099-12-07T11:07:09.000Z",
  27. "event": {
  28. "category": "process",
  29. "id": "aR3NWVOs",
  30. "sequence": 4
  31. },
  32. "process": {
  33. "pid": 2012,
  34. "name": "regsvr32.exe",
  35. "command_line": "regsvr32.exe /s /u /i:https://...RegSvr32.sct scrobj.dll",
  36. "executable": "C:\\Windows\\System32\\regsvr32.exe"
  37. }
  38. }
  39. },
  40. {
  41. "_index": "my-index-000001",
  42. "_type": "_doc",
  43. "_id": "yDwnGIJouOYGBzP0ZE9n",
  44. "_version": 1,
  45. "_seq_no": 4,
  46. "_primary_term": 1,
  47. "_score": null,
  48. "_source": {
  49. "@timestamp": "2099-12-07T11:07:10.000Z",
  50. "event": {
  51. "category": "file",
  52. "id": "tZ1NWVOs",
  53. "sequence": 5
  54. },
  55. "process": {
  56. "pid": 2012,
  57. "name": "regsvr32.exe",
  58. "executable": "C:\\Windows\\System32\\regsvr32.exe"
  59. },
  60. "file": {
  61. "path": "C:\\Windows\\System32\\scrobj.dll",
  62. "name": "scrobj.dll"
  63. }
  64. }
  65. }
  66. ]
  67. }
  68. ]
  69. }
  70. }

You can use the until keyword to specify an expiration event for sequences. Matching sequences must end before this event.

The following request adds until [ process where event.type == "termination" ] to the previous query. This ensures matching sequences end before a process event with an event.type of termination.

  1. GET /my-index-000001/_eql/search
  2. {
  3. "query": """
  4. sequence by process.pid with maxspan=1h
  5. [ process where process.name == "regsvr32.exe" ]
  6. [ file where stringContains(file.name, "scrobj.dll") ]
  7. until [ process where event.type == "termination" ]
  8. """
  9. }

Specify a timestamp or event category field

To run an EQL search, each searched document must contain a timestamp and event category field. The EQL search API uses the @timestamp and event.category fields from the Elastic Common Schema (ECS) by default. If your documents use a different timestamp or event category field, you must specify it in the search request using the timestamp_field or event_category_field parameters.

The event category field is typically mapped as a field type in the keyword family. The timestamp field is typically mapped as a date or date_nanos field.

You cannot use a nested field or the sub-fields of a nested field as the timestamp or event category field. See EQL search on nested fields.

The following request uses the timestamp_field parameter to specify file.accessed as the timestamp field. The request also uses the event_category_field parameter to specify file.type as the event category field.

  1. GET /my-index-000001/_eql/search
  2. {
  3. "timestamp_field": "file.accessed",
  4. "event_category_field": "file.type",
  5. "query": """
  6. file where (file.size > 1 and file.type == "file")
  7. """
  8. }

Filter using query DSL

You can use the filter parameter to specify an additional query using query DSL. This query filters the documents on which the EQL query runs.

The following request uses a range query to filter my-index-000001 to only documents with a file.size value greater than 1 but less than 1000000 bytes. The EQL query in query parameter then runs on these filtered documents.

  1. GET /my-index-000001/_eql/search
  2. {
  3. "filter": {
  4. "range" : {
  5. "file.size" : {
  6. "gte" : 1,
  7. "lte" : 1000000
  8. }
  9. }
  10. },
  11. "query": """
  12. file where (file.type == "file" and file.name == "cmd.exe")
  13. """
  14. }

Run a case-sensitive EQL search

By default, matching for EQL queries is case-insensitive. You can use the case_sensitive parameter to toggle case sensitivity on or off.

The following search request contains a query that matches process events with a process.executable containing System32.

Because case_sensitive is true, this query only matches process.executable values containing System32 with the exact same capitalization. A process.executable value containing system32 or SYSTEM32 would not match this query.

  1. GET /my-index-000001/_eql/search
  2. {
  3. "keep_on_completion": true,
  4. "case_sensitive": true,
  5. "query": """
  6. process where stringContains(process.executable, "System32")
  7. """
  8. }

Run an async EQL search

EQL searches are designed to run on large volumes of data quickly, often returning results in milliseconds. For this reason, EQL searches are synchronous by default. The search request waits for complete results before returning a response.

However, complete results can take longer for searches across:

To avoid long waits, you can use the wait_for_completion_timeout parameter to run an asynchronous, or async, EQL search.

Set wait_for_completion_timeout to a duration you’d like to wait for complete search results. If the search request does not finish within this period, the search becomes async and returns a response that includes:

  • A search ID, which can be used to monitor the progress of the async search.
  • An is_partial value of true, meaning the response does not contain complete search results.
  • An is_running value of true, meaning the search is async and ongoing.

The async search continues to run in the background without blocking other requests.

The following request searches the frozen-my-index-000001 index, which has been frozen for storage and is rarely searched.

Because searches on frozen indices are expected to take longer to complete, the request contains a wait_for_completion_timeout parameter value of 2s (two seconds). If the request does not return complete results in two seconds, the search becomes async and returns a search ID.

  1. GET /frozen-my-index-000001/_eql/search
  2. {
  3. "wait_for_completion_timeout": "2s",
  4. "query": """
  5. process where process.name == "cmd.exe"
  6. """
  7. }

After two seconds, the request returns the following response. Note is_partial and is_running properties are true, indicating an async search.

  1. {
  2. "id": "FmNJRUZ1YWZCU3dHY1BIOUhaenVSRkEaaXFlZ3h4c1RTWFNocDdnY2FSaERnUTozNDE=",
  3. "is_partial": true,
  4. "is_running": true,
  5. "took": 2000,
  6. "timed_out": false,
  7. "hits": ...
  8. }

You can use the the search ID and the get async EQL search API to check the progress of an async search.

The get async EQL search API also accepts a wait_for_completion_timeout parameter. If ongoing search does not complete during this period, the response returns an is_partial value of true and no search results.

The following get async EQL search API request checks the progress of the previous async EQL search. The request specifies a wait_for_completion_timeout query parameter value of 2s (two seconds).

  1. GET /_eql/search/FmNJRUZ1YWZCU3dHY1BIOUhaenVSRkEaaXFlZ3h4c1RTWFNocDdnY2FSaERnUTozNDE=?wait_for_completion_timeout=2s

The request returns the following response. Note is_partial and is_running are false, indicating the async search has finished and the search results in the hits property are complete.

  1. {
  2. "id": "FmNJRUZ1YWZCU3dHY1BIOUhaenVSRkEaaXFlZ3h4c1RTWFNocDdnY2FSaERnUTozNDE=",
  3. "is_partial": false,
  4. "is_running": false,
  5. "took": 2000,
  6. "timed_out": false,
  7. "hits": ...
  8. }

Change the search retention period

By default, the EQL search API stores async searches for five days. After this period, any searches and their results are deleted. You can use the keep_alive parameter to change this retention period.

In the following EQL search request, the keep_alive parameter is 2d (two days). If the search becomes async, its results are stored on the cluster for two days. After two days, the async search and its results are deleted, even if it’s still ongoing.

  1. GET /my-index-000001/_eql/search
  2. {
  3. "keep_alive": "2d",
  4. "wait_for_completion_timeout": "2s",
  5. "query": """
  6. process where process.name == "cmd.exe"
  7. """
  8. }

You can use the get async EQL search API‘s `keep_alive`parameter to later change the retention period. The new retention period starts after the get request executes.

The following request sets the keep_alive query parameter to 5d (five days). The async search and its results are deleted five days after the get request executes.

  1. GET /_eql/search/FmNJRUZ1YWZCU3dHY1BIOUhaenVSRkEaaXFlZ3h4c1RTWFNocDdnY2FSaERnUTozNDE=?keep_alive=5d

You can use the delete async EQL search API to manually delete an async EQL search before the keep_alive period ends. If the search is still ongoing, this cancels the search request.

The following request deletes an async EQL search and its results.

  1. DELETE /_eql/search/FmNJRUZ1YWZCU3dHY1BIOUhaenVSRkEaaXFlZ3h4c1RTWFNocDdnY2FSaERnUTozNDE=?keep_alive=5d

Store synchronous EQL searches

By default, the EQL search API only stores async searches that cannot be completed within the period set by wait_for_completion_timeout.

To save the results of searches that complete during this period, set the keep_on_completion parameter to true.

In the following search request, keep_on_completion is true. This means the search results are stored on the cluster, even if the search completes within the 2s (two-second) period set by the wait_for_completion_timeout parameter.

  1. GET /my-index-000001/_eql/search
  2. {
  3. "keep_on_completion": true,
  4. "wait_for_completion_timeout": "2s",
  5. "query": """
  6. process where process.name == "cmd.exe"
  7. """
  8. }

The API returns the following response. A search ID is provided in the id property. is_partial and is_running are false, indicating the EQL search was synchronous and returned complete results in hits.

  1. {
  2. "id": "FjlmbndxNmJjU0RPdExBTGg0elNOOEEaQk9xSjJBQzBRMldZa1VVQ2pPa01YUToxMDY=",
  3. "is_partial": false,
  4. "is_running": false,
  5. "took": 52,
  6. "timed_out": false,
  7. "hits": ...
  8. }

You can use the search ID and the get async EQL search API to retrieve the same results later.

  1. GET /_eql/search/FjlmbndxNmJjU0RPdExBTGg0elNOOEEaQk9xSjJBQzBRMldZa1VVQ2pPa01YUToxMDY=

Saved synchronous searches are still subject to the retention period set by the keep_alive parameter. After this period, the search and its results are deleted.

You can also manually delete saved synchronous searches using the delete async EQL search API.