Skip to main content

Interface: HistoryRow

Defined in: electron/services/database/utils/historyMapper.ts:36

Represents a single row in the monitor history database table.

Remarks

Used for low-level database operations and data mapping.

Param

Optional additional information about the history entry.

Param

Unique identifier for the history record.

Param

Identifier of the monitor this history belongs to.

Param

Response time in milliseconds.

Param

Monitor status ("up" or "down").

Param

Unix timestamp of when the check occurred.

Properties

details?

optional details: string

Defined in: electron/services/database/utils/historyMapper.ts:37


id

id: string

Defined in: electron/services/database/utils/historyMapper.ts:38


monitorId

monitorId: string

Defined in: electron/services/database/utils/historyMapper.ts:39


responseTime

responseTime: number

Defined in: electron/services/database/utils/historyMapper.ts:40


status

status: "down" | "up"

Defined in: electron/services/database/utils/historyMapper.ts:41


timestamp

timestamp: number

Defined in: electron/services/database/utils/historyMapper.ts:42