Skip to main content

Interface: MonitoringOperationSummary

Defined in: shared/types.ts:433

Summary metrics describing the outcome of a monitoring lifecycle operation.

Remarksโ€‹

Produced by Electron monitoring managers after attempting to start or stop monitoring across multiple sites. Provides aggregate counts that renderer components and diagnostics tooling can use to surface user feedback and telemetry without inspecting internal logs.

Extended byโ€‹

Propertiesโ€‹

attemptedโ€‹

readonly attempted: number

Defined in: shared/types.ts:437

Number of monitors that were eligible and attempted during the operation.


failedโ€‹

readonly failed: number

Defined in: shared/types.ts:442

Number of monitors that failed to change state because the backend returned an error or false.


isMonitoringโ€‹

readonly isMonitoring: boolean

Defined in: shared/types.ts:447

Reflects the resulting global monitoring state after the operation has completed.


partialFailuresโ€‹

readonly partialFailures: boolean

Defined in: shared/types.ts:452

Indicates whether any failures were recorded while still having at least one monitor succeed.


siteCountโ€‹

readonly siteCount: number

Defined in: shared/types.ts:454

Number of site configurations evaluated during the operation.


skippedโ€‹

readonly skipped: number

Defined in: shared/types.ts:459

Number of monitors skipped automatically (missing identifiers or already satisfied state).


succeededโ€‹

readonly succeeded: number

Defined in: shared/types.ts:461

Number of monitors that completed the requested operation successfully.