Alerts and findings APIs

The following APIs can be used for tasks related to alerts and findings.

Get Alerts

Provides an option for retrieving alerts related to a specific detector type or detector ID.

Parameters

You can specify the following parameters when requesting an alert.

ParameterDescription
detectorIdThe ID of the detector used to fetch alerts. Optional when the detectorType is specified. Otherwise required.
detectorTypeThe type of detector used to fetch alerts. Optional when the detectorId is specified. Otherwise required.
severityLevelUsed to filter by alert severity level. Optional.
alertStateUsed to filter by alert state. Possible values: ACTIVE, ACKNOWLEDGED, COMPLETED, ERROR, DELETED. Optional.
sortStringThis field specifies which string Security Analytics uses to sort the alerts. Optional.
sortOrderThe order used to sort the list of findings, either ascending or descending. Optional.
missingA list of fields for which there are no found alias mappings. Optional.
sizeAn optional limit for the maximum number of results returned in the response. Optional.
startIndexThe pagination indicator. Optional.
searchStringThe alert attribute you want returned in the search. Optional.

Sample request

  1. GET /_plugins/_security_analytics/alerts?detectorType=windows

Sample response

  1. {
  2. "alerts": [{
  3. "detector_id": "detector_12345",
  4. "id": "alert_id_1",
  5. "version": -3,
  6. "schema_version": 0,
  7. "trigger_id": "trigger_id_1",
  8. "trigger_name": "my_trigger",
  9. "finding_ids": ["finding_id_1"],
  10. "related_doc_ids": ["docId1"],
  11. "state": "ACTIVE",
  12. "error_message": null,
  13. "alert_history": [],
  14. "severity": null,
  15. "action_execution_results": [{
  16. "action_id": "action_id_1",
  17. "last_execution_time": 1665693544996,
  18. "throttled_count": 0
  19. }],
  20. "start_time": "2022-10-13T20:39:04.995023Z",
  21. "last_notification_time": "2022-10-13T20:39:04.995028Z",
  22. "end_time": "2022-10-13T20:39:04.995027Z",
  23. "acknowledged_time": "2022-10-13T20:39:04.995028Z"
  24. }],
  25. "total_alerts": 1,
  26. "detectorType": "windows"
  27. }

Response fields

Alerts persist until you resolve the root cause and have the following states:

StateDescription
ACTIVEThe alert is ongoing and unacknowledged. Alerts remain in this state until you acknowledge them, delete the trigger associated with the alert, or delete the monitor entirely.
ACKNOWLEDGEDSomeone has acknowledged the alert but not fixed the root cause.
COMPLETEDThe alert is no longer ongoing. Alerts enter this state after the corresponding trigger evaluates to false.
ERRORAn error occurred while executing the trigger. This error is usually the result of a bad trigger or destination.
DELETEDSomeone deleted the detector or trigger associated with this alert while the alert was ongoing.

Acknowledge Alerts

Sample request

  1. POST /_plugins/_security_analytics/<detector_id>/_acknowledge/alerts
  2. {"alerts":["4dc7f5a9-2c82-4786-81ca-433a209d5205"]}

Sample response

  1. {
  2. "acknowledged": [
  3. {
  4. "detector_id": "8YT5fYQBZ8IUM4axics6",
  5. "id": "4dc7f5a9-2c82-4786-81ca-433a209d5205",
  6. "version": 1,
  7. "schema_version": 4,
  8. "trigger_id": "1TP5fYQBMkkIGY6Pg-q8",
  9. "trigger_name": "test-trigger",
  10. "finding_ids": [
  11. "2e167f4b-8063-40ef-80f8-2afd9bf095b8"
  12. ],
  13. "related_doc_ids": [
  14. "1|windows"
  15. ],
  16. "state": "ACTIVE",
  17. "error_message": null,
  18. "alert_history": [],
  19. "severity": "1",
  20. "action_execution_results": [
  21. {
  22. "action_id": "BopdoIJKXd",
  23. "last_execution_time": 1668560817925,
  24. "throttled_count": 0
  25. }
  26. ],
  27. "start_time": "2022-11-16T01:06:57.748Z",
  28. "last_notification_time": "2022-11-16T01:06:57.748Z",
  29. "end_time": null,
  30. "acknowledged_time": null
  31. }
  32. ],
  33. "failed": [],
  34. "missing": []
  35. }

Get Findings

The Get findings API based on detector attributes.

Sample request

  1. GET /_plugins/_security_analytics/findings/_search?*detectorType*=
  2. {
  3. "total_findings":2,
  4. "findings":[
  5. {
  6. "detectorId":"12345",
  7. "id":"2b9663f4-ae77-4df8-b84f-688a0195723b",
  8. "related_doc_ids":[
  9. "5"
  10. ],
  11. "index":"sbwhrzgdlg",
  12. "queries":[
  13. {
  14. "id":"f1bff160-587b-4500-b60c-ab22c7abc652",
  15. "name":"3",
  16. "query":"test_field:\"us-west-2\"",
  17. "tags":[
  18. ]
  19. }
  20. ],
  21. "timestamp":1664401088804,
  22. "document_list":[
  23. {
  24. "index":"sbwhrzgdlg",
  25. "id":"5",
  26. "found":true,
  27. "document":"{\n \"message\" : \"This is an error from IAD region\",\n \"test_strict_date_time\" : \"2022-09-28T21:38:02.888Z\",\n \"test_field\" : \"us-west-2\"\n }"
  28. }
  29. ]
  30. },
  31. {
  32. "detectorId":"12345",
  33. "id":"f43a2701-0ef5-4931-8254-bdf510f73952",
  34. "related_doc_ids":[
  35. "1"
  36. ],
  37. "index":"sbwhrzgdlg",
  38. "queries":[
  39. {
  40. "id":"f1bff160-587b-4500-b60c-ab22c7abc652",
  41. "name":"3",
  42. "query":"test_field:\"us-west-2\"",
  43. "tags":[
  44. ]
  45. }
  46. ],
  47. "timestamp":1664401088746,
  48. "document_list":[
  49. {
  50. "index":"sbwhrzgdlg",
  51. "id":"1",
  52. "found":true,
  53. "document":"{\n \"message\" : \"This is an error from IAD region\",\n \"test_strict_date_time\" : \"2022-09-28T21:38:02.888Z\",\n \"test_field\" : \"us-west-2\"\n }"
  54. }
  55. ]
  56. }
  57. ]
  58. }