IngestionDirectContentsSource

Ingest events directly from the request.

Fields
events[] object (Event)

Required. The events to ingest.

JSON representation
{
  "events": [
    {
      object (Event)
    }
  ]
}

Event

A single event to ingest.

Fields
content object (Content)

Required. The content of the event.

eventId string

Optional. A unique identifier for the event. If an event with the same eventId is ingested multiple times, it will be de-duplicated.

eventTime string (Timestamp format)

Optional. The time at which the event occurred. If provided, this timestamp will be used for ordering events within a stream. If not provided, the server-side ingestion time will be used.

Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: "2014-10-02T15:01:23Z", "2014-10-02T15:01:23.045123456Z" or "2014-10-02T15:01:23+05:30".

JSON representation
{
  "content": {
    object (Content)
  },
  "eventId": string,
  "eventTime": string
}