Interface: MonitoringOperationSummary
Defined in: shared/types.ts:464
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.
Hierarchyโ
Extended byโ
Propertiesโ
attemptedโ
readonly attempted: number;
Defined in: shared/types.ts:468
Number of monitors that were eligible and attempted during the operation.
failedโ
readonly failed: number;
Defined in: shared/types.ts:473
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:478
Reflects the resulting global monitoring state after the operation has completed.
partialFailuresโ
readonly partialFailures: boolean;
Defined in: shared/types.ts:483
Indicates whether any failures were recorded while still having at least one monitor succeed.
siteCountโ
readonly siteCount: number;
Defined in: shared/types.ts:485
Number of site configurations evaluated during the operation.
skippedโ
readonly skipped: number;
Defined in: shared/types.ts:490
Number of monitors skipped automatically (missing identifiers or already satisfied state).
succeededโ
readonly succeeded: number;
Defined in: shared/types.ts:492
Number of monitors that completed the requested operation successfully.