@cat-factory/contracts 0.220.0 → 0.221.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -511,9 +511,30 @@ export declare const agentSearchQuerySchema: v.ObjectSchema<{
511
511
  readonly createdAt: v.NumberSchema<undefined>;
512
512
  }, undefined>;
513
513
  export type AgentSearchQuery = v.InferOutput<typeof agentSearchQuerySchema>;
514
- /** The time window the dashboard aggregates over. */
515
- export declare const platformObservabilityWindowSchema: v.PicklistSchema<["1h", "24h", "7d"], undefined>;
514
+ /**
515
+ * The time window the dashboard aggregates over. `1h`/`24h`/`7d` are scanned live off
516
+ * `agent_runs`; `30d`/`90d` are served from the DAILY ROLLUP table the retention sweep
517
+ * materialises, because a fine-grained scan over a quarter of run history is exactly the
518
+ * "load rows and reduce" cost the rollup exists to avoid. Which source answered is carried
519
+ * on the projection ({@link platformTrendSourceSchema}) rather than left to be inferred.
520
+ *
521
+ * The rollup-backed windows are INCLUSIVE of the day their start falls in, so a `30d` window
522
+ * covers 30 or 31 calendar days depending on the time of day it is read, where the live windows
523
+ * are exact to the millisecond. A day is the smallest bucket that table can answer, and dropping
524
+ * the partial oldest day would under-report it by more than including it over-reports; `since`
525
+ * on the projection is still the exact window start, so a reader is never told otherwise.
526
+ */
527
+ export declare const platformObservabilityWindowSchema: v.PicklistSchema<["1h", "24h", "7d", "30d", "90d"], undefined>;
516
528
  export type PlatformObservabilityWindow = v.InferOutput<typeof platformObservabilityWindowSchema>;
529
+ /**
530
+ * Where a window's outcome totals, trend and failure taxonomy came from: a live scan of
531
+ * `agent_runs` (`runs`) or the daily rollup table (`daily-rollup`). Reported rather than
532
+ * derived from the window, so a reader never has to know the routing table to know what it
533
+ * is looking at, and so a rollup that has not run yet reads as missing data rather than as
534
+ * a quiet deployment (see `rolledUpThrough`).
535
+ */
536
+ export declare const platformTrendSourceSchema: v.PicklistSchema<["runs", "daily-rollup"], undefined>;
537
+ export type PlatformTrendSource = v.InferOutput<typeof platformTrendSourceSchema>;
517
538
  /** Run-outcome totals over the window (each a status bucket, plus the derived success rate). */
518
539
  export declare const platformOutcomeTotalsSchema: v.ObjectSchema<{
519
540
  /** All runs created in the window. */
@@ -546,9 +567,48 @@ export declare const platformFailureSliceSchema: v.ObjectSchema<{
546
567
  readonly count: v.NumberSchema<undefined>;
547
568
  }, undefined>;
548
569
  export type PlatformFailureSlice = v.InferOutput<typeof platformFailureSliceSchema>;
570
+ /**
571
+ * One gate kind's attempt statistics over the window: the operator view of the
572
+ * precheck-or-escalate loop that `ci` / `conflicts` / `post-release-health` (and a
573
+ * deployment's own gates) run. Folded from the `gate_outcomes` projection, one row of which
574
+ * is written when a gate SETTLES; the per-round detail stays on the run's `step.gate`.
575
+ *
576
+ * The numbers answer three different operator questions that a bare attempt count conflates:
577
+ * how often the gate is satisfied with nothing spun up ({@link cleanPasses}, the whole point
578
+ * of a precheck-first gate), how much helper-agent work the deployment is spending
579
+ * ({@link attempts}), and how often that work runs out without fixing anything
580
+ * ({@link exhausted}, the human hand-off).
581
+ */
582
+ export declare const platformGateStatSchema: v.ObjectSchema<{
583
+ /** The gate step's agent kind (`ci` / `conflicts` / `post-release-health` / a custom one). */
584
+ readonly gateKind: v.StringSchema<undefined>;
585
+ /** The helper agent this gate escalates to (`ci-fixer` / …), or null when it has none. */
586
+ readonly helperKind: v.NullableSchema<v.StringSchema<undefined>, undefined>;
587
+ /** Gate steps that reached a terminal verdict in the window. */
588
+ readonly gates: v.NumberSchema<undefined>;
589
+ /** Of those, how many the precheck ultimately passed. */
590
+ readonly passed: v.NumberSchema<undefined>;
591
+ /** Of those, how many spent the attempt budget and handed off to a human. */
592
+ readonly exhausted: v.NumberSchema<undefined>;
593
+ /**
594
+ * Gates that passed WITHOUT dispatching a helper at all. Reported separately from
595
+ * {@link passed} because "the gate was green on the first look" and "the fixer got it green
596
+ * on the third try" are the same `passed` and completely different platform health.
597
+ */
598
+ readonly cleanPasses: v.NumberSchema<undefined>;
599
+ /** Helper-agent dispatches across every gate of this kind (the CI-fixer attempt count). */
600
+ readonly attempts: v.NumberSchema<undefined>;
601
+ /**
602
+ * Helper dispatches whose own job FAILED (as opposed to finishing and leaving the precheck
603
+ * still red). Kept apart because a fixer that keeps crashing is a platform fault, while a
604
+ * fixer that runs clean and cannot fix the build is a product one.
605
+ */
606
+ readonly helperFailures: v.NumberSchema<undefined>;
607
+ }, undefined>;
608
+ export type PlatformGateStat = v.InferOutput<typeof platformGateStatSchema>;
549
609
  /** The complete deployment-health projection the admin dashboard renders. */
550
610
  export declare const platformObservabilitySchema: v.ObjectSchema<{
551
- readonly window: v.PicklistSchema<["1h", "24h", "7d"], undefined>;
611
+ readonly window: v.PicklistSchema<["1h", "24h", "7d", "30d", "90d"], undefined>;
552
612
  /** When the projection was computed (epoch ms). */
553
613
  readonly generatedAt: v.NumberSchema<undefined>;
554
614
  /** Start of the window (epoch ms) — `generatedAt - window`. */
@@ -566,6 +626,29 @@ export declare const platformObservabilitySchema: v.ObjectSchema<{
566
626
  /** `done / (done + failed)`, 0..1; null when no run reached a terminal outcome. */
567
627
  readonly successRate: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
568
628
  }, undefined>;
629
+ /**
630
+ * Which store answered the outcome totals, trend and failure taxonomy for this window.
631
+ * `runs` = a live scan of `agent_runs`; `daily-rollup` = the pre-aggregated daily table.
632
+ */
633
+ readonly source: v.PicklistSchema<["runs", "daily-rollup"], undefined>;
634
+ /**
635
+ * On a `daily-rollup` window: the newest day (epoch ms, UTC midnight) the rollup SWEEP has
636
+ * covered, or NULL when no pass has ever completed.
637
+ *
638
+ * Null is the whole reason this field exists. A rollup that has never run and a deployment
639
+ * that has never run anything both produce an empty series, and only one of them is a fact
640
+ * about the platform, so the reader is told which, rather than being shown 90 days of
641
+ * confident zeros. A value well behind `generatedAt` says the same thing more quietly: the
642
+ * sweep is behind, and the tail of the window is not missing work but missing data.
643
+ * Always null on a `runs` window, where there is no rollup in the path to be behind.
644
+ *
645
+ * It is the SWEEP's recorded coverage, not the newest rolled-up row, and DEPLOYMENT-wide
646
+ * rather than per account. Deriving it from the rows cannot support either reading above: an
647
+ * account idle for a fortnight and a wedged pass share a newest row, and an account created
648
+ * yesterday and a rollup that never ran share an absence. Both pairs call for opposite
649
+ * operator responses, so the number has to come from the thing being asked about.
650
+ */
651
+ readonly rolledUpThrough: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
569
652
  readonly trend: v.ObjectSchema<{
570
653
  /** Width of each trend bucket (ms). */
571
654
  readonly bucketMs: v.NumberSchema<undefined>;
@@ -584,6 +667,38 @@ export declare const platformObservabilitySchema: v.ObjectSchema<{
584
667
  readonly kind: v.StringSchema<undefined>;
585
668
  readonly count: v.NumberSchema<undefined>;
586
669
  }, undefined>, undefined>;
670
+ /**
671
+ * Gate attempt statistics over the window, busiest gate first. Always a live read of the
672
+ * `gate_outcomes` projection (it is small and not rolled up), so it is present on every
673
+ * window; EMPTY means no gate settled in the window, which on a `daily-rollup` window may
674
+ * simply mean the gate projection does not reach that far back.
675
+ */
676
+ readonly gates: v.ArraySchema<v.ObjectSchema<{
677
+ /** The gate step's agent kind (`ci` / `conflicts` / `post-release-health` / a custom one). */
678
+ readonly gateKind: v.StringSchema<undefined>;
679
+ /** The helper agent this gate escalates to (`ci-fixer` / …), or null when it has none. */
680
+ readonly helperKind: v.NullableSchema<v.StringSchema<undefined>, undefined>;
681
+ /** Gate steps that reached a terminal verdict in the window. */
682
+ readonly gates: v.NumberSchema<undefined>;
683
+ /** Of those, how many the precheck ultimately passed. */
684
+ readonly passed: v.NumberSchema<undefined>;
685
+ /** Of those, how many spent the attempt budget and handed off to a human. */
686
+ readonly exhausted: v.NumberSchema<undefined>;
687
+ /**
688
+ * Gates that passed WITHOUT dispatching a helper at all. Reported separately from
689
+ * {@link passed} because "the gate was green on the first look" and "the fixer got it green
690
+ * on the third try" are the same `passed` and completely different platform health.
691
+ */
692
+ readonly cleanPasses: v.NumberSchema<undefined>;
693
+ /** Helper-agent dispatches across every gate of this kind (the CI-fixer attempt count). */
694
+ readonly attempts: v.NumberSchema<undefined>;
695
+ /**
696
+ * Helper dispatches whose own job FAILED (as opposed to finishing and leaving the precheck
697
+ * still red). Kept apart because a fixer that keeps crashing is a platform fault, while a
698
+ * fixer that runs clean and cannot fix the build is a product one.
699
+ */
700
+ readonly helperFailures: v.NumberSchema<undefined>;
701
+ }, undefined>, undefined>;
587
702
  /** Live/parked run depth right now (a snapshot, not windowed). */
588
703
  readonly live: v.ObjectSchema<{
589
704
  readonly running: v.NumberSchema<undefined>;
@@ -635,6 +750,98 @@ export type PlatformObservability = v.InferOutput<typeof platformObservabilitySc
635
750
  */
636
751
  export declare const platformAlertReasonSchema: v.PicklistSchema<["failure_rate_high", "duration_p99_high", "backlog_high", "throughput_stalled", "failure_kind_dominant", "sweep_degraded"], undefined>;
637
752
  export type PlatformAlertReason = v.InferOutput<typeof platformAlertReasonSchema>;
753
+ /**
754
+ * The windows the ALERT sweep may evaluate over: the live-scanned subset of
755
+ * {@link platformObservabilityWindowSchema}. The rollup-backed `30d`/`90d` windows are
756
+ * deliberately excluded: an alert is a statement about NOW, and a threshold averaged over a
757
+ * quarter answers a question nobody pages on, while riding a table that is materialised at
758
+ * best hourly.
759
+ */
760
+ export declare const platformAlertWindowSchema: v.PicklistSchema<["1h", "24h", "7d"], undefined>;
761
+ export type PlatformAlertWindow = v.InferOutput<typeof platformAlertWindowSchema>;
762
+ /**
763
+ * Operator-tunable ceilings for the platform-health alert sweep. EVERY field is optional and
764
+ * an absent one INHERITS the deployment's env-derived default rather than meaning zero. The
765
+ * distinction matters here more than most places, because a zero is a live threshold in this
766
+ * vocabulary ("alert on silence even in an idle window") and would page instantly.
767
+ *
768
+ * The bounds mirror the env parser's clamps (`resolvePlatformAlertConfig`), so a threshold
769
+ * typed into the settings panel is refused at the write boundary for the same reasons an
770
+ * env value is corrected at boot: a `stalledBuckets` of 0 makes "the last zero buckets were
771
+ * empty" trivially true, and a `maxFailureKindShare` of 0 is satisfied by any distribution.
772
+ */
773
+ export declare const platformAlertThresholdOverridesSchema: v.ObjectSchema<{
774
+ /** Minimum terminal runs before the failure-rate + dominant-kind alerts can fire. */
775
+ readonly minRuns: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100000, undefined>]>, undefined>;
776
+ /** Run failure rate (0..1) at or above which `failure_rate_high` fires. */
777
+ readonly maxFailureRate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
778
+ /** p99 wall-clock run duration (ms) at or above which `duration_p99_high` fires. */
779
+ readonly maxP99DurationMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
780
+ /** Live running/blocked/paused/pending depth at or above which `backlog_high` fires. */
781
+ readonly maxBacklog: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 1000000, undefined>]>, undefined>;
782
+ /** Trailing empty trend buckets before `throughput_stalled` can fire. */
783
+ readonly stalledBuckets: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 1000, undefined>]>, undefined>;
784
+ /**
785
+ * Runs the earlier part of the window must have carried before a stall counts. `0` is a
786
+ * meaningful setting ("this deployment should never be quiet"), which is why the floor here
787
+ * is 0 and not 1, unlike every other count in this object.
788
+ */
789
+ readonly minStalledPriorRuns: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000000, undefined>]>, undefined>;
790
+ /**
791
+ * Share (0..1] of the window's failures one kind must reach for `failure_kind_dominant`.
792
+ * The floor excludes 0 on its own (a share of 0 is satisfied by any distribution, so it would
793
+ * page constantly), which is why there is no separate `notValue(0)` beside it.
794
+ */
795
+ readonly maxFailureKindShare: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, number, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
796
+ /** Consecutive failed passes of one sweeper before `sweep_degraded` fires. */
797
+ readonly maxSweepFailures: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10000, undefined>]>, undefined>;
798
+ }, undefined>;
799
+ export type PlatformAlertThresholdOverrides = v.InferOutput<typeof platformAlertThresholdOverridesSchema>;
800
+ /**
801
+ * An account's stored platform-health alert settings: the settings-UI half of the alert
802
+ * config, layered over the deployment's env-derived defaults so an operator can retune a
803
+ * threshold without a redeploy.
804
+ *
805
+ * `enabled` can only turn the account's alerts OFF, never on: the env switch
806
+ * (`PLATFORM_ALERTS`) decides whether the SWEEP RUNS AT ALL on this deployment, and no stored
807
+ * row can start a timer that was never started. Saying so here rather than pretending the
808
+ * setting is symmetric is what keeps the panel from offering a toggle that silently does
809
+ * nothing on a deployment that never opted in.
810
+ */
811
+ export declare const platformAlertSettingsSchema: v.ObjectSchema<{
812
+ /** `false` mutes this account's alerts. Absent ⇒ follow the deployment switch. */
813
+ readonly enabled: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
814
+ /** The window each condition is evaluated over. Absent ⇒ the deployment default. */
815
+ readonly window: v.OptionalSchema<v.PicklistSchema<["1h", "24h", "7d"], undefined>, undefined>;
816
+ /** Per-condition ceilings; each absent field inherits the deployment default. */
817
+ readonly thresholds: v.OptionalSchema<v.ObjectSchema<{
818
+ /** Minimum terminal runs before the failure-rate + dominant-kind alerts can fire. */
819
+ readonly minRuns: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100000, undefined>]>, undefined>;
820
+ /** Run failure rate (0..1) at or above which `failure_rate_high` fires. */
821
+ readonly maxFailureRate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
822
+ /** p99 wall-clock run duration (ms) at or above which `duration_p99_high` fires. */
823
+ readonly maxP99DurationMs: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, number, undefined>]>, undefined>;
824
+ /** Live running/blocked/paused/pending depth at or above which `backlog_high` fires. */
825
+ readonly maxBacklog: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 1000000, undefined>]>, undefined>;
826
+ /** Trailing empty trend buckets before `throughput_stalled` can fire. */
827
+ readonly stalledBuckets: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 1000, undefined>]>, undefined>;
828
+ /**
829
+ * Runs the earlier part of the window must have carried before a stall counts. `0` is a
830
+ * meaningful setting ("this deployment should never be quiet"), which is why the floor here
831
+ * is 0 and not 1, unlike every other count in this object.
832
+ */
833
+ readonly minStalledPriorRuns: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000000, undefined>]>, undefined>;
834
+ /**
835
+ * Share (0..1] of the window's failures one kind must reach for `failure_kind_dominant`.
836
+ * The floor excludes 0 on its own (a share of 0 is satisfied by any distribution, so it would
837
+ * page constantly), which is why there is no separate `notValue(0)` beside it.
838
+ */
839
+ readonly maxFailureKindShare: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, number, undefined>, v.MaxValueAction<number, 1, undefined>]>, undefined>;
840
+ /** Consecutive failed passes of one sweeper before `sweep_degraded` fires. */
841
+ readonly maxSweepFailures: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10000, undefined>]>, undefined>;
842
+ }, undefined>, undefined>;
843
+ }, undefined>;
844
+ export type PlatformAlertSettings = v.InferOutput<typeof platformAlertSettingsSchema>;
638
845
  /** One fired platform-health alert: the tripped condition, its observed value + threshold. */
639
846
  export declare const platformAlertSchema: v.ObjectSchema<{
640
847
  readonly reason: v.PicklistSchema<["failure_rate_high", "duration_p99_high", "backlog_high", "throughput_stalled", "failure_kind_dominant", "sweep_degraded"], undefined>;
@@ -644,4 +851,24 @@ export declare const platformAlertSchema: v.ObjectSchema<{
644
851
  readonly threshold: v.NumberSchema<undefined>;
645
852
  }, undefined>;
646
853
  export type PlatformAlert = v.InferOutput<typeof platformAlertSchema>;
854
+ /**
855
+ * One failed run behind a `platform_health` card, so the alert deep-links to the EVIDENCE
856
+ * rather than only to the dashboard. Carried on the notification payload, always scoped to
857
+ * the card's own workspace (a card in one workspace must never link into another's run).
858
+ *
859
+ * Captured at the moment the firing set CHANGES, not refreshed every sweep: the payload is
860
+ * the card's dedup identity, so a list that churned with each new failure would re-deliver
861
+ * the alert (and re-toast the inbox) for the entire length of an incident.
862
+ */
863
+ export declare const platformFailingRunSchema: v.ObjectSchema<{
864
+ /** The run id, which is what the SPA opens. */
865
+ readonly executionId: v.StringSchema<undefined>;
866
+ /** The block the run belongs to, so the SPA can reveal it on the board. Null if unset. */
867
+ readonly blockId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
868
+ /** The run's `failure.kind` (or `unknown`): why this one is in the list. */
869
+ readonly failureKind: v.StringSchema<undefined>;
870
+ /** When the run was created (epoch ms). */
871
+ readonly createdAt: v.NumberSchema<undefined>;
872
+ }, undefined>;
873
+ export type PlatformFailingRun = v.InferOutput<typeof platformFailingRunSchema>;
647
874
  //# sourceMappingURL=observability.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"observability.d.ts","sourceRoot":"","sources":["../src/observability.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"observability.d.ts","sourceRoot":"","sources":["../src/observability.ts"],"names":[],"mappings":"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"}
@@ -334,8 +334,28 @@ export const agentSearchQuerySchema = v.object({
334
334
  // number is a SQL rollup over `agent_runs` behind the kernel `PlatformMetricsRepository`
335
335
  // port; this schema is the wire projection the admin dashboard renders.
336
336
  // ---------------------------------------------------------------------------
337
- /** The time window the dashboard aggregates over. */
338
- export const platformObservabilityWindowSchema = v.picklist(['1h', '24h', '7d']);
337
+ /**
338
+ * The time window the dashboard aggregates over. `1h`/`24h`/`7d` are scanned live off
339
+ * `agent_runs`; `30d`/`90d` are served from the DAILY ROLLUP table the retention sweep
340
+ * materialises, because a fine-grained scan over a quarter of run history is exactly the
341
+ * "load rows and reduce" cost the rollup exists to avoid. Which source answered is carried
342
+ * on the projection ({@link platformTrendSourceSchema}) rather than left to be inferred.
343
+ *
344
+ * The rollup-backed windows are INCLUSIVE of the day their start falls in, so a `30d` window
345
+ * covers 30 or 31 calendar days depending on the time of day it is read, where the live windows
346
+ * are exact to the millisecond. A day is the smallest bucket that table can answer, and dropping
347
+ * the partial oldest day would under-report it by more than including it over-reports; `since`
348
+ * on the projection is still the exact window start, so a reader is never told otherwise.
349
+ */
350
+ export const platformObservabilityWindowSchema = v.picklist(['1h', '24h', '7d', '30d', '90d']);
351
+ /**
352
+ * Where a window's outcome totals, trend and failure taxonomy came from: a live scan of
353
+ * `agent_runs` (`runs`) or the daily rollup table (`daily-rollup`). Reported rather than
354
+ * derived from the window, so a reader never has to know the routing table to know what it
355
+ * is looking at, and so a rollup that has not run yet reads as missing data rather than as
356
+ * a quiet deployment (see `rolledUpThrough`).
357
+ */
358
+ export const platformTrendSourceSchema = v.picklist(['runs', 'daily-rollup']);
339
359
  /** Run-outcome totals over the window (each a status bucket, plus the derived success rate). */
340
360
  export const platformOutcomeTotalsSchema = v.object({
341
361
  /** All runs created in the window. */
@@ -365,6 +385,44 @@ export const platformFailureSliceSchema = v.object({
365
385
  kind: v.string(),
366
386
  count: v.number(),
367
387
  });
388
+ /**
389
+ * One gate kind's attempt statistics over the window: the operator view of the
390
+ * precheck-or-escalate loop that `ci` / `conflicts` / `post-release-health` (and a
391
+ * deployment's own gates) run. Folded from the `gate_outcomes` projection, one row of which
392
+ * is written when a gate SETTLES; the per-round detail stays on the run's `step.gate`.
393
+ *
394
+ * The numbers answer three different operator questions that a bare attempt count conflates:
395
+ * how often the gate is satisfied with nothing spun up ({@link cleanPasses}, the whole point
396
+ * of a precheck-first gate), how much helper-agent work the deployment is spending
397
+ * ({@link attempts}), and how often that work runs out without fixing anything
398
+ * ({@link exhausted}, the human hand-off).
399
+ */
400
+ export const platformGateStatSchema = v.object({
401
+ /** The gate step's agent kind (`ci` / `conflicts` / `post-release-health` / a custom one). */
402
+ gateKind: v.string(),
403
+ /** The helper agent this gate escalates to (`ci-fixer` / …), or null when it has none. */
404
+ helperKind: v.nullable(v.string()),
405
+ /** Gate steps that reached a terminal verdict in the window. */
406
+ gates: v.number(),
407
+ /** Of those, how many the precheck ultimately passed. */
408
+ passed: v.number(),
409
+ /** Of those, how many spent the attempt budget and handed off to a human. */
410
+ exhausted: v.number(),
411
+ /**
412
+ * Gates that passed WITHOUT dispatching a helper at all. Reported separately from
413
+ * {@link passed} because "the gate was green on the first look" and "the fixer got it green
414
+ * on the third try" are the same `passed` and completely different platform health.
415
+ */
416
+ cleanPasses: v.number(),
417
+ /** Helper-agent dispatches across every gate of this kind (the CI-fixer attempt count). */
418
+ attempts: v.number(),
419
+ /**
420
+ * Helper dispatches whose own job FAILED (as opposed to finishing and leaving the precheck
421
+ * still red). Kept apart because a fixer that keeps crashing is a platform fault, while a
422
+ * fixer that runs clean and cannot fix the build is a product one.
423
+ */
424
+ helperFailures: v.number(),
425
+ });
368
426
  /** The complete deployment-health projection the admin dashboard renders. */
369
427
  export const platformObservabilitySchema = v.object({
370
428
  window: platformObservabilityWindowSchema,
@@ -373,6 +431,29 @@ export const platformObservabilitySchema = v.object({
373
431
  /** Start of the window (epoch ms) — `generatedAt - window`. */
374
432
  since: v.number(),
375
433
  outcomes: platformOutcomeTotalsSchema,
434
+ /**
435
+ * Which store answered the outcome totals, trend and failure taxonomy for this window.
436
+ * `runs` = a live scan of `agent_runs`; `daily-rollup` = the pre-aggregated daily table.
437
+ */
438
+ source: platformTrendSourceSchema,
439
+ /**
440
+ * On a `daily-rollup` window: the newest day (epoch ms, UTC midnight) the rollup SWEEP has
441
+ * covered, or NULL when no pass has ever completed.
442
+ *
443
+ * Null is the whole reason this field exists. A rollup that has never run and a deployment
444
+ * that has never run anything both produce an empty series, and only one of them is a fact
445
+ * about the platform, so the reader is told which, rather than being shown 90 days of
446
+ * confident zeros. A value well behind `generatedAt` says the same thing more quietly: the
447
+ * sweep is behind, and the tail of the window is not missing work but missing data.
448
+ * Always null on a `runs` window, where there is no rollup in the path to be behind.
449
+ *
450
+ * It is the SWEEP's recorded coverage, not the newest rolled-up row, and DEPLOYMENT-wide
451
+ * rather than per account. Deriving it from the rows cannot support either reading above: an
452
+ * account idle for a fortnight and a wedged pass share a newest row, and an account created
453
+ * yesterday and a rollup that never ran share an absence. Both pairs call for opposite
454
+ * operator responses, so the number has to come from the thing being asked about.
455
+ */
456
+ rolledUpThrough: v.nullable(v.number()),
376
457
  trend: v.object({
377
458
  /** Width of each trend bucket (ms). */
378
459
  bucketMs: v.number(),
@@ -380,6 +461,13 @@ export const platformObservabilitySchema = v.object({
380
461
  }),
381
462
  /** Failure taxonomy over the window, most frequent first. */
382
463
  failures: v.array(platformFailureSliceSchema),
464
+ /**
465
+ * Gate attempt statistics over the window, busiest gate first. Always a live read of the
466
+ * `gate_outcomes` projection (it is small and not rolled up), so it is present on every
467
+ * window; EMPTY means no gate settled in the window, which on a `daily-rollup` window may
468
+ * simply mean the gate projection does not reach that far back.
469
+ */
470
+ gates: v.array(platformGateStatSchema),
383
471
  /** Live/parked run depth right now (a snapshot, not windowed). */
384
472
  live: v.object({
385
473
  running: v.number(),
@@ -447,6 +535,70 @@ export const platformAlertReasonSchema = v.picklist([
447
535
  'failure_kind_dominant',
448
536
  'sweep_degraded',
449
537
  ]);
538
+ /**
539
+ * The windows the ALERT sweep may evaluate over: the live-scanned subset of
540
+ * {@link platformObservabilityWindowSchema}. The rollup-backed `30d`/`90d` windows are
541
+ * deliberately excluded: an alert is a statement about NOW, and a threshold averaged over a
542
+ * quarter answers a question nobody pages on, while riding a table that is materialised at
543
+ * best hourly.
544
+ */
545
+ export const platformAlertWindowSchema = v.picklist(['1h', '24h', '7d']);
546
+ /**
547
+ * Operator-tunable ceilings for the platform-health alert sweep. EVERY field is optional and
548
+ * an absent one INHERITS the deployment's env-derived default rather than meaning zero. The
549
+ * distinction matters here more than most places, because a zero is a live threshold in this
550
+ * vocabulary ("alert on silence even in an idle window") and would page instantly.
551
+ *
552
+ * The bounds mirror the env parser's clamps (`resolvePlatformAlertConfig`), so a threshold
553
+ * typed into the settings panel is refused at the write boundary for the same reasons an
554
+ * env value is corrected at boot: a `stalledBuckets` of 0 makes "the last zero buckets were
555
+ * empty" trivially true, and a `maxFailureKindShare` of 0 is satisfied by any distribution.
556
+ */
557
+ export const platformAlertThresholdOverridesSchema = v.object({
558
+ /** Minimum terminal runs before the failure-rate + dominant-kind alerts can fire. */
559
+ minRuns: v.optional(v.pipe(v.number(), v.integer(), v.minValue(1), v.maxValue(100_000))),
560
+ /** Run failure rate (0..1) at or above which `failure_rate_high` fires. */
561
+ maxFailureRate: v.optional(v.pipe(v.number(), v.minValue(0), v.maxValue(1))),
562
+ /** p99 wall-clock run duration (ms) at or above which `duration_p99_high` fires. */
563
+ maxP99DurationMs: v.optional(v.pipe(v.number(), v.integer(), v.minValue(1), v.maxValue(30 * 24 * 60 * 60_000))),
564
+ /** Live running/blocked/paused/pending depth at or above which `backlog_high` fires. */
565
+ maxBacklog: v.optional(v.pipe(v.number(), v.integer(), v.minValue(1), v.maxValue(1_000_000))),
566
+ /** Trailing empty trend buckets before `throughput_stalled` can fire. */
567
+ stalledBuckets: v.optional(v.pipe(v.number(), v.integer(), v.minValue(1), v.maxValue(1_000))),
568
+ /**
569
+ * Runs the earlier part of the window must have carried before a stall counts. `0` is a
570
+ * meaningful setting ("this deployment should never be quiet"), which is why the floor here
571
+ * is 0 and not 1, unlike every other count in this object.
572
+ */
573
+ minStalledPriorRuns: v.optional(v.pipe(v.number(), v.integer(), v.minValue(0), v.maxValue(1_000_000))),
574
+ /**
575
+ * Share (0..1] of the window's failures one kind must reach for `failure_kind_dominant`.
576
+ * The floor excludes 0 on its own (a share of 0 is satisfied by any distribution, so it would
577
+ * page constantly), which is why there is no separate `notValue(0)` beside it.
578
+ */
579
+ maxFailureKindShare: v.optional(v.pipe(v.number(), v.minValue(Number.EPSILON), v.maxValue(1))),
580
+ /** Consecutive failed passes of one sweeper before `sweep_degraded` fires. */
581
+ maxSweepFailures: v.optional(v.pipe(v.number(), v.integer(), v.minValue(1), v.maxValue(10_000))),
582
+ });
583
+ /**
584
+ * An account's stored platform-health alert settings: the settings-UI half of the alert
585
+ * config, layered over the deployment's env-derived defaults so an operator can retune a
586
+ * threshold without a redeploy.
587
+ *
588
+ * `enabled` can only turn the account's alerts OFF, never on: the env switch
589
+ * (`PLATFORM_ALERTS`) decides whether the SWEEP RUNS AT ALL on this deployment, and no stored
590
+ * row can start a timer that was never started. Saying so here rather than pretending the
591
+ * setting is symmetric is what keeps the panel from offering a toggle that silently does
592
+ * nothing on a deployment that never opted in.
593
+ */
594
+ export const platformAlertSettingsSchema = v.object({
595
+ /** `false` mutes this account's alerts. Absent ⇒ follow the deployment switch. */
596
+ enabled: v.optional(v.boolean()),
597
+ /** The window each condition is evaluated over. Absent ⇒ the deployment default. */
598
+ window: v.optional(platformAlertWindowSchema),
599
+ /** Per-condition ceilings; each absent field inherits the deployment default. */
600
+ thresholds: v.optional(platformAlertThresholdOverridesSchema),
601
+ });
450
602
  /** One fired platform-health alert: the tripped condition, its observed value + threshold. */
451
603
  export const platformAlertSchema = v.object({
452
604
  reason: platformAlertReasonSchema,
@@ -455,4 +607,23 @@ export const platformAlertSchema = v.object({
455
607
  /** The configured threshold it crossed (same unit as {@link value}). */
456
608
  threshold: v.number(),
457
609
  });
610
+ /**
611
+ * One failed run behind a `platform_health` card, so the alert deep-links to the EVIDENCE
612
+ * rather than only to the dashboard. Carried on the notification payload, always scoped to
613
+ * the card's own workspace (a card in one workspace must never link into another's run).
614
+ *
615
+ * Captured at the moment the firing set CHANGES, not refreshed every sweep: the payload is
616
+ * the card's dedup identity, so a list that churned with each new failure would re-deliver
617
+ * the alert (and re-toast the inbox) for the entire length of an incident.
618
+ */
619
+ export const platformFailingRunSchema = v.object({
620
+ /** The run id, which is what the SPA opens. */
621
+ executionId: v.string(),
622
+ /** The block the run belongs to, so the SPA can reveal it on the board. Null if unset. */
623
+ blockId: v.nullable(v.string()),
624
+ /** The run's `failure.kind` (or `unknown`): why this one is in the list. */
625
+ failureKind: v.string(),
626
+ /** When the run was created (epoch ms). */
627
+ createdAt: v.number(),
628
+ });
458
629
  //# sourceMappingURL=observability.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"observability.js","sourceRoot":"","sources":["../src/observability.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"observability.js","sourceRoot":"","sources":["../src/observability.ts"],"names":[],"mappings":"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"}
@@ -390,6 +390,13 @@ export declare const publicNotificationListSchema: v.ObjectSchema<{
390
390
  readonly unmergedRepos: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
391
391
  readonly platformWindow: v.OptionalSchema<v.PicklistSchema<["1h", "24h", "7d"], undefined>, undefined>;
392
392
  readonly platformAlerts: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<["failure_rate_high", "duration_p99_high", "backlog_high", "throughput_stalled", "failure_kind_dominant", "sweep_degraded"], undefined>, undefined>, undefined>;
393
+ readonly platformFailingRuns: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
394
+ readonly executionId: v.StringSchema<undefined>;
395
+ readonly blockId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
396
+ readonly failureKind: v.StringSchema<undefined>;
397
+ readonly createdAt: v.NumberSchema<undefined>;
398
+ }, undefined>, undefined>, undefined>;
399
+ readonly platformFailedTotal: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
393
400
  readonly unreachableAreas: v.OptionalSchema<v.ArraySchema<v.PicklistSchema<["ephemeralEnvironments", "agentExecutor", "binaryStorage"], undefined>, undefined>, undefined>;
394
401
  readonly driftAffected: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
395
402
  readonly source: v.StringSchema<undefined>;
@@ -1 +1 @@
1
- {"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"reserved-env-keys.d.ts","sourceRoot":"","sources":["../src/reserved-env-keys.ts"],"names":[],"mappings":"AA4DA;;;;;;;;GAQG;AACH,eAAO,MAAM,8BAA8B,EAAE,SAAS,MAAM,EAqC3D,CAAA;AAED;;;;;;;;GAQG;AACH,eAAO,MAAM,0BAA0B,EAAE,SAAS,MAAM,EAiBvD,CAAA;AAKD;;;;;;;;;;;;GAYG;AACH,wBAAgB,wBAAwB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAK7D;AAED;;;;;;;GAOG;AACH,wBAAgB,qBAAqB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAQzD;AAgDD,uGAAuG;AACvG,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAKxD;AAED,yFAAyF;AACzF,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAM5D;AAED,oEAAoE;AACpE,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAEvD"}
1
+ {"version":3,"file":"reserved-env-keys.d.ts","sourceRoot":"","sources":["../src/reserved-env-keys.ts"],"names":[],"mappings":"AA4DA;;;;;;;;GAQG;AACH,eAAO,MAAM,8BAA8B,EAAE,SAAS,MAAM,EAqC3D,CAAA;AAED;;;;;;;;GAQG;AACH,eAAO,MAAM,0BAA0B,EAAE,SAAS,MAAM,EAmBvD,CAAA;AAKD;;;;;;;;;;;;GAYG;AACH,wBAAgB,wBAAwB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAK7D;AAED;;;;;;;GAOG;AACH,wBAAgB,qBAAqB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAQzD;AAgDD,uGAAuG;AACvG,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAKxD;AAED,yFAAyF;AACzF,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAM5D;AAED,oEAAoE;AACpE,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAEvD"}