Skip to main content

Interface: MonitoringOperationSummary

Defined in: shared/types.ts:437

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:441

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


failedโ€‹

readonly failed: number

Defined in: shared/types.ts:446

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:451

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


partialFailuresโ€‹

readonly partialFailures: boolean

Defined in: shared/types.ts:456

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


siteCountโ€‹

readonly siteCount: number

Defined in: shared/types.ts:458

Number of site configurations evaluated during the operation.


skippedโ€‹

readonly skipped: number

Defined in: shared/types.ts:463

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


succeededโ€‹

readonly succeeded: number

Defined in: shared/types.ts:465

Number of monitors that completed the requested operation successfully.