Skip to main content
GET
/
v1
/
process
/
latest
Get latest processing status
curl --request GET \
  --url https://mycluster.domino.tech/v1/process/latest
{
  "addedEvents": 8500,
  "createdAt": "2025-06-15T10:30:00.000Z",
  "deduplicatedEvents": 6498,
  "existingEvents": 42000,
  "failedEvents": 2,
  "id": "a33ef748-41fb-42aa-aed0-bcc87da3ff0e",
  "newEvents": 15000,
  "startedAt": "2025-06-15T10:30:00.000Z",
  "successfulProcessedEvents": 14998,
  "updatedAt": "2025-06-15T10:35:22.000Z",
  "completedAt": "2025-06-15T10:35:22.000Z",
  "firstEventTimestamp": "2025-06-15T09:00:00.000Z",
  "lastEventTimestamp": "2025-06-15T10:29:55.000Z"
}

Response

OK

Represents the outcome of a single event-processing run

addedEvents
integer
required

New events added to the output (not deduplicated)

Example:

8500

createdAt
string
required

Timestamp when the processing record was created

Example:

"2025-06-15T10:30:00.000Z"

deduplicatedEvents
integer
required

Events recognized as duplicates and excluded from output

Example:

6498

existingEvents
integer
required

Previously processed events loaded for deduplication

Example:

42000

failedEvents
integer
required

Events that failed to parse or insert

Example:

2

id
string
required

Unique identifier for this processing run

Example:

"a33ef748-41fb-42aa-aed0-bcc87da3ff0e"

newEvents
integer
required

Total number of new raw Falco event files found

Example:

15000

startedAt
string
required

Timestamp when event processing began

Example:

"2025-06-15T10:30:00.000Z"

status
enum<string>
required

State of a processing run

Available options:
InProgress,
Completed,
Failed
successfulProcessedEvents
integer
required

Events successfully parsed and inserted

Example:

14998

updatedAt
string
required

Timestamp of the most recent update to this record

Example:

"2025-06-15T10:35:22.000Z"

completedAt
string

Timestamp when processing finished. Null while status is InProgress

Example:

"2025-06-15T10:35:22.000Z"

firstEventTimestamp
string

Timestamp of the earliest raw Falco event in this batch

Example:

"2025-06-15T09:00:00.000Z"

lastEventTimestamp
string

Timestamp of the latest raw Falco event in this batch

Example:

"2025-06-15T10:29:55.000Z"