UdmSearchOperationMetadata

Information about a UDM Search operation. This message is used to populate the metadata field of Operation resources created by UDM Search.

JSON representation
{
  "start_time": string,
  "end_time": string,
  "expire_time": string,
  "progress": number,
  "baseline_events_count": integer,
  "filtered_events_count": integer,
  "baseline_query": string,
  "snapshot_query": string,
  "baseline_time_range": {
    object (Interval)
  },
  "snapshot_time_range": {
    object (Interval)
  },
  "case_insensitive": boolean,
  "stats_rows_count": integer,
  "datatable_write_metadata": {
    object (DataTableWriteMetadata)
  }
}
Fields
start_time

string (Timestamp format)

The start time of the operation.

Uses RFC 3339, where generated output will always be Z-normalized and uses 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".

end_time

string (Timestamp format)

The end time of the operation, if done.

Uses RFC 3339, where generated output will always be Z-normalized and uses 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".

expire_time

string (Timestamp format)

The time when the operation results expire. This time may change while the operation is in progress. If unset, the results never expire.

Uses RFC 3339, where generated output will always be Z-normalized and uses 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".

progress

number

A value from 0 to 1 representing the progress of the operation.

baseline_events_count

integer

The number of events matching the baseline query so far.

filtered_events_count

integer

The number of events matching the snapshot query so far. This is <= baseline_events_count. If the snapshot query is empty, this will be equal to baseline_events_count.

baseline_query

string

Query used to search for events.

snapshot_query

string

Query used to filter the baseline query's events.

baseline_time_range

object (Interval)

The time range used for the baseline query [inclusive start time, exclusive end time).

snapshot_time_range

object (Interval)

Time range used to filter the baseline query's events [inclusive start time, exclusive end time). This time range is completely within baseline_time_range. If not set, it is assumed to match baseline_time_range.

case_insensitive

boolean

If true, the search was performed in a case-insensitive manner.

stats_rows_count

integer

The total number of rows returned for a stats query.

datatable_write_metadata

object (DataTableWriteMetadata)

Metadata about the DataTable write operation.