Package version:

Represents the indexer's cumulative runtime consumption in the service.

interface IndexerRuntime {
    beginningTime: Date;
    endingTime: Date;
    remainingSeconds?: number;
    usedSeconds: number;
}

Properties

beginningTime: Date

Beginning UTC time of the 24-hour period considered for indexer runtime usage (inclusive).

endingTime: Date

End UTC time of the 24-hour period considered for indexer runtime usage (inclusive).

remainingSeconds?: number

Cumulative runtime remaining for all indexers in the service from the beginningTime to endingTime, in seconds.

usedSeconds: number

Cumulative runtime of the indexer from the beginningTime to endingTime, in seconds.