Skip to main content

Function: getLatestHistoryTimestamp()

function getLatestHistoryTimestamp(
history: readonly Pick<StatusHistory, "timestamp">[]
): number | undefined;

Defined in: src/utils/monitoring/monitorHistoryTime.ts:22

Computes the most recent monitor history timestamp from an arbitrary history ordering.

Parametersโ€‹

historyโ€‹

readonly Pick<StatusHistory, "timestamp">[]

Monitor status history entries.

Returnsโ€‹

number | undefined

Latest timestamp in milliseconds, if any valid value exists.