Package version:

Interface LogsQueryPartialResult

A partially successful query result.

interface LogsQueryPartialResult {
    partialError: LogsErrorInfo;
    partialTables: {};
    statistics?: any;
    status: PartialFailure;
    visualization?: any;
}

Properties

partialError: LogsErrorInfo

The code and message for an error.

partialTables: {}

The results of the query in tabular format.

statistics?: any

Statistics represented in JSON format.

The status of the query.

visualization?: any

Visualization data in JSON format.