Interface DbMetricsInfo

Basic metrics information about a database.

interface DbMetricsInfo {
    errorsTotalCount: number;
    liveDataSizeBytes: number;
    readRequestsTotalCount: number;
    writeRequestsTotalCount: number;
}

Properties

errorsTotalCount: number

The number of errors that have occurred in the database.

liveDataSizeBytes: number

The number of live data bytes in the database.

readRequestsTotalCount: number

The number of read requests that have occurred in the database.

writeRequestsTotalCount: number

The number of write requests that have occurred in the database.