@camstack/addon-provider-rtsp 1.2.38 → 1.2.39

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.
package/dist/addon.js CHANGED
@@ -13523,6 +13523,114 @@ method(LogEntrySchema, _void(), { kind: "mutation" }), method(object({
13523
13523
  limit: number().optional(),
13524
13524
  tags: record(string(), string()).optional()
13525
13525
  }), array(LogEntrySchema).readonly());
13526
+ /**
13527
+ * `failure-contribution` — the capability an addon reports its OWN losses
13528
+ * through, per camera, with the denominator attached. It stores nothing.
13529
+ *
13530
+ * ## The twin of `load-contribution`, and why it is a twin and not a field
13531
+ *
13532
+ * `load-contribution` answers *what did this camera COST*. This answers *what
13533
+ * did this camera LOSE*. The reporting discipline is identical and deliberately
13534
+ * copied: the contributor reports what it already knows, hub-main adds only
13535
+ * `addonId`, nothing needs global knowledge, and there is no central list for
13536
+ * somebody to forget to edit.
13537
+ *
13538
+ * They are not merged, because their invariants are opposites:
13539
+ *
13540
+ * - a `load-contribution` measurement is **absent, never zero** — a zero would
13541
+ * claim a camera cost nothing, which is a measurement nobody made;
13542
+ * - a `failure-contribution` zero is the **most valuable value on the
13543
+ * surface** — `attempts: 400, succeeded: 400` is the proof a fix landed,
13544
+ * and it is exactly what an absent entry cannot say.
13545
+ *
13546
+ * Putting a loss counter on a cost entry would also break the reconciliation
13547
+ * that gives `load-contribution` its point: contributions are subtracted from
13548
+ * `metrics.node-processes-snapshot` to find processes nobody claims. A failure
13549
+ * has no process.
13550
+ *
13551
+ * ## Why not a log line, since the counters already exist
13552
+ *
13553
+ * Several of these paths already counted themselves — `CaptureScheduler`'s
13554
+ * per-device window, `KeyFrameCaptureLog`, `bumpCropMetric`. Every one of them
13555
+ * ends in a log line, and a log line is the thing the operator asked to stop
13556
+ * needing: *"possiamo armare questi errori intanto? Così al prossimo giro
13557
+ * ricontrolliamo tutti questi punti"*. Reading them meant grepping Loki and
13558
+ * hand-correlating timestamps, which is how a 22% thumbnail gap and a 3-hour
13559
+ * media blackout were both diagnosed. The counters stay; this is where they can
13560
+ * be READ.
13561
+ *
13562
+ * ## The rate is served with its denominator or not at all
13563
+ *
13564
+ * Every entry carries `attempts` and `succeeded`. A miss count alone is
13565
+ * unreadable: on 2026-08-28 the enrichment-crop miss count read as "35x worse
13566
+ * than yesterday" and was **flat across twelve hours** once divided by the
13567
+ * successes on the same path. A surface that publishes only the numerator
13568
+ * reproduces that mistake on every read.
13569
+ *
13570
+ * ## Shape
13571
+ *
13572
+ * Copied from `load-contribution.cap.ts` (`mode: 'collection'`,
13573
+ * `internal: true`, `mount: { kind: 'skip' }`): no tRPC route of its own and no
13574
+ * generated hooks, while `addons.listCapabilityProviders` still enumerates it
13575
+ * and the hub's `CapabilityRegistry` still holds an RPC proxy per provider — so
13576
+ * a forked runner's entries reach hub-main over transport that already exists.
13577
+ * No new UDS message, no second registry (D3). The operator reads the assembled
13578
+ * result through `system.getFailureContributions`.
13579
+ */
13580
+ var FailureReasonCountSchema = object({
13581
+ /**
13582
+ * Why the attempt did not land, in the contributor's own vocabulary —
13583
+ * `worker-lease-gone`, `queue-overflow`, `timeout`, `empty-read`. The same
13584
+ * strings that already appear in this repo's logs and, where one exists, the
13585
+ * same string the per-track `previewMissReason` records (D276): a second
13586
+ * vocabulary for the same loss would make the row and the counter
13587
+ * un-joinable.
13588
+ */
13589
+ reason: string(),
13590
+ count: number().int().nonnegative()
13591
+ });
13592
+ var FailureContributionSchema = object({
13593
+ /**
13594
+ * The failing path — `enrichment-crop`, `inference`, `plate-ocr`,
13595
+ * `person-over-vehicle`. Free text, for the reason `load-contribution` keeps
13596
+ * `unit` free: the families are owned by different addons and a shared enum
13597
+ * is a central list that rots invisibly.
13598
+ */
13599
+ family: string(),
13600
+ /**
13601
+ * The NUMERIC device id — the same value every log line carries as
13602
+ * `tags.deviceId`. Never nullable and never absent: a contributor that
13603
+ * cannot name the camera must not emit the entry, because a fleet total
13604
+ * cannot answer the only question anybody asks of this surface.
13605
+ */
13606
+ deviceId: number().int().positive(),
13607
+ /**
13608
+ * A second dimension inside the family: the model / step id for an inference
13609
+ * timeout, so "which camera AND which model" is one read. Absent when the
13610
+ * family has a single variant.
13611
+ */
13612
+ variant: string().optional(),
13613
+ /**
13614
+ * Epoch ms this counter started — the INCARNATION MARKER. A consumer
13615
+ * differencing two reads must drop the interval when it changes, because the
13616
+ * counter restarted from zero in a respawned runner. Same discipline as
13617
+ * `LoadContribution.startedAtMs`.
13618
+ */
13619
+ sinceMs: number(),
13620
+ /** Epoch ms it was read. `atMs - sinceMs` is the interval this covers. */
13621
+ atMs: number(),
13622
+ /**
13623
+ * THE DENOMINATOR — every attempt on this path for this camera in the
13624
+ * window. A failure count published without it is the mistake this schema
13625
+ * exists to make impossible.
13626
+ */
13627
+ attempts: number().int().nonnegative(),
13628
+ /** Attempts that landed. `attempts - succeeded` is the loss. */
13629
+ succeeded: number().int().nonnegative(),
13630
+ /** The loss, partitioned. Sums to `attempts - succeeded`. */
13631
+ reasons: array(FailureReasonCountSchema).readonly()
13632
+ });
13633
+ method(_void(), array(FailureContributionSchema).readonly());
13526
13634
  var LoadContributionSchema = object({
13527
13635
  role: _enum([
13528
13636
  "decode",
@@ -18113,6 +18221,20 @@ var TrackSchema = object({
18113
18221
  * `=== true` and render nothing otherwise — never infer "no rider".
18114
18222
  */
18115
18223
  hasRider: boolean().optional(),
18224
+ /**
18225
+ * WHY this track ended without a NATIVE best-shot tile
18226
+ * ([D276](../decisions/adr-0276-a-stand-in-tile-is-provisional-and-a-close-says-why.md)) —
18227
+ * a composed token line (`no-key-frame capture=keyframe:native-missx4`,
18228
+ * `derive-returned-null tile=standin`, …) written at close and CLEARED by
18229
+ * the late-keyFrame upgrade when a native tile lands after all. The
18230
+ * operator-facing answer to "perché manca l'immagine?" on a track whose
18231
+ * tile is a face/plate stand-in, a raster crop, or an icon.
18232
+ *
18233
+ * **Absent ≠ "missed silently"**: a row written before the column, a hub
18234
+ * that predates the field, and every track whose tile landed native all
18235
+ * omit it. Render nothing when absent.
18236
+ */
18237
+ previewMissReason: string().optional(),
18116
18238
  ...TrackFlagFields,
18117
18239
  ...TrackRetrainFields
18118
18240
  });
@@ -29400,6 +29522,13 @@ var LoggingSettingsPatchSchema = object({
29400
29522
  * anyone but its owner.
29401
29523
  */
29402
29524
  var ReportedLoadContributionSchema = LoadContributionSchema.extend({ addonId: string() });
29525
+ /**
29526
+ * One per-camera failure counter, plus WHO reported it.
29527
+ *
29528
+ * Same rule as {@link ReportedLoadContributionSchema}: `addonId` is stamped by
29529
+ * the hub as it enumerates providers, never by the contributor.
29530
+ */
29531
+ var ReportedFailureContributionSchema = FailureContributionSchema.extend({ addonId: string() });
29403
29532
  var GetLoggingSettingsInputSchema = object({
29404
29533
  scopeNodeId: string().optional(),
29405
29534
  /**
@@ -29458,7 +29587,7 @@ method(_void(), FeatureManifestSchema), method(_void(), HealthStatusSchema), met
29458
29587
  }), method(_void(), SiteLocationStatusSchema, {
29459
29588
  kind: "mutation",
29460
29589
  auth: "admin"
29461
- }), method(_void(), RequestCensusStatusSchema, { auth: "admin" }), method(_void(), array(ReportedLoadContributionSchema).readonly(), { auth: "admin" }), method(GetLoggingSettingsInputSchema, LoggingSettingsStateSchema, { auth: "admin" }), method(SetLoggingSettingsInputSchema, LoggingSettingsStateSchema, {
29590
+ }), method(_void(), RequestCensusStatusSchema, { auth: "admin" }), method(_void(), array(ReportedLoadContributionSchema).readonly(), { auth: "admin" }), method(_void(), array(ReportedFailureContributionSchema).readonly(), { auth: "admin" }), method(GetLoggingSettingsInputSchema, LoggingSettingsStateSchema, { auth: "admin" }), method(SetLoggingSettingsInputSchema, LoggingSettingsStateSchema, {
29462
29591
  kind: "mutation",
29463
29592
  auth: "admin"
29464
29593
  });
@@ -33514,6 +33643,12 @@ Object.freeze({
33514
33643
  addonId: null,
33515
33644
  access: "create"
33516
33645
  },
33646
+ "failureContribution.list": {
33647
+ capName: "failure-contribution",
33648
+ capScope: "system",
33649
+ addonId: null,
33650
+ access: "view"
33651
+ },
33517
33652
  "fanControl.setDirection": {
33518
33653
  capName: "fan-control",
33519
33654
  capScope: "device",
@@ -36820,6 +36955,12 @@ Object.freeze({
36820
36955
  addonId: null,
36821
36956
  access: "create"
36822
36957
  },
36958
+ "system.getFailureContributions": {
36959
+ capName: "system",
36960
+ capScope: "system",
36961
+ addonId: null,
36962
+ access: "view"
36963
+ },
36823
36964
  "system.getLoadContributions": {
36824
36965
  capName: "system",
36825
36966
  capScope: "system",
package/dist/addon.mjs CHANGED
@@ -13499,6 +13499,114 @@ method(LogEntrySchema, _void(), { kind: "mutation" }), method(object({
13499
13499
  limit: number().optional(),
13500
13500
  tags: record(string(), string()).optional()
13501
13501
  }), array(LogEntrySchema).readonly());
13502
+ /**
13503
+ * `failure-contribution` — the capability an addon reports its OWN losses
13504
+ * through, per camera, with the denominator attached. It stores nothing.
13505
+ *
13506
+ * ## The twin of `load-contribution`, and why it is a twin and not a field
13507
+ *
13508
+ * `load-contribution` answers *what did this camera COST*. This answers *what
13509
+ * did this camera LOSE*. The reporting discipline is identical and deliberately
13510
+ * copied: the contributor reports what it already knows, hub-main adds only
13511
+ * `addonId`, nothing needs global knowledge, and there is no central list for
13512
+ * somebody to forget to edit.
13513
+ *
13514
+ * They are not merged, because their invariants are opposites:
13515
+ *
13516
+ * - a `load-contribution` measurement is **absent, never zero** — a zero would
13517
+ * claim a camera cost nothing, which is a measurement nobody made;
13518
+ * - a `failure-contribution` zero is the **most valuable value on the
13519
+ * surface** — `attempts: 400, succeeded: 400` is the proof a fix landed,
13520
+ * and it is exactly what an absent entry cannot say.
13521
+ *
13522
+ * Putting a loss counter on a cost entry would also break the reconciliation
13523
+ * that gives `load-contribution` its point: contributions are subtracted from
13524
+ * `metrics.node-processes-snapshot` to find processes nobody claims. A failure
13525
+ * has no process.
13526
+ *
13527
+ * ## Why not a log line, since the counters already exist
13528
+ *
13529
+ * Several of these paths already counted themselves — `CaptureScheduler`'s
13530
+ * per-device window, `KeyFrameCaptureLog`, `bumpCropMetric`. Every one of them
13531
+ * ends in a log line, and a log line is the thing the operator asked to stop
13532
+ * needing: *"possiamo armare questi errori intanto? Così al prossimo giro
13533
+ * ricontrolliamo tutti questi punti"*. Reading them meant grepping Loki and
13534
+ * hand-correlating timestamps, which is how a 22% thumbnail gap and a 3-hour
13535
+ * media blackout were both diagnosed. The counters stay; this is where they can
13536
+ * be READ.
13537
+ *
13538
+ * ## The rate is served with its denominator or not at all
13539
+ *
13540
+ * Every entry carries `attempts` and `succeeded`. A miss count alone is
13541
+ * unreadable: on 2026-08-28 the enrichment-crop miss count read as "35x worse
13542
+ * than yesterday" and was **flat across twelve hours** once divided by the
13543
+ * successes on the same path. A surface that publishes only the numerator
13544
+ * reproduces that mistake on every read.
13545
+ *
13546
+ * ## Shape
13547
+ *
13548
+ * Copied from `load-contribution.cap.ts` (`mode: 'collection'`,
13549
+ * `internal: true`, `mount: { kind: 'skip' }`): no tRPC route of its own and no
13550
+ * generated hooks, while `addons.listCapabilityProviders` still enumerates it
13551
+ * and the hub's `CapabilityRegistry` still holds an RPC proxy per provider — so
13552
+ * a forked runner's entries reach hub-main over transport that already exists.
13553
+ * No new UDS message, no second registry (D3). The operator reads the assembled
13554
+ * result through `system.getFailureContributions`.
13555
+ */
13556
+ var FailureReasonCountSchema = object({
13557
+ /**
13558
+ * Why the attempt did not land, in the contributor's own vocabulary —
13559
+ * `worker-lease-gone`, `queue-overflow`, `timeout`, `empty-read`. The same
13560
+ * strings that already appear in this repo's logs and, where one exists, the
13561
+ * same string the per-track `previewMissReason` records (D276): a second
13562
+ * vocabulary for the same loss would make the row and the counter
13563
+ * un-joinable.
13564
+ */
13565
+ reason: string(),
13566
+ count: number().int().nonnegative()
13567
+ });
13568
+ var FailureContributionSchema = object({
13569
+ /**
13570
+ * The failing path — `enrichment-crop`, `inference`, `plate-ocr`,
13571
+ * `person-over-vehicle`. Free text, for the reason `load-contribution` keeps
13572
+ * `unit` free: the families are owned by different addons and a shared enum
13573
+ * is a central list that rots invisibly.
13574
+ */
13575
+ family: string(),
13576
+ /**
13577
+ * The NUMERIC device id — the same value every log line carries as
13578
+ * `tags.deviceId`. Never nullable and never absent: a contributor that
13579
+ * cannot name the camera must not emit the entry, because a fleet total
13580
+ * cannot answer the only question anybody asks of this surface.
13581
+ */
13582
+ deviceId: number().int().positive(),
13583
+ /**
13584
+ * A second dimension inside the family: the model / step id for an inference
13585
+ * timeout, so "which camera AND which model" is one read. Absent when the
13586
+ * family has a single variant.
13587
+ */
13588
+ variant: string().optional(),
13589
+ /**
13590
+ * Epoch ms this counter started — the INCARNATION MARKER. A consumer
13591
+ * differencing two reads must drop the interval when it changes, because the
13592
+ * counter restarted from zero in a respawned runner. Same discipline as
13593
+ * `LoadContribution.startedAtMs`.
13594
+ */
13595
+ sinceMs: number(),
13596
+ /** Epoch ms it was read. `atMs - sinceMs` is the interval this covers. */
13597
+ atMs: number(),
13598
+ /**
13599
+ * THE DENOMINATOR — every attempt on this path for this camera in the
13600
+ * window. A failure count published without it is the mistake this schema
13601
+ * exists to make impossible.
13602
+ */
13603
+ attempts: number().int().nonnegative(),
13604
+ /** Attempts that landed. `attempts - succeeded` is the loss. */
13605
+ succeeded: number().int().nonnegative(),
13606
+ /** The loss, partitioned. Sums to `attempts - succeeded`. */
13607
+ reasons: array(FailureReasonCountSchema).readonly()
13608
+ });
13609
+ method(_void(), array(FailureContributionSchema).readonly());
13502
13610
  var LoadContributionSchema = object({
13503
13611
  role: _enum([
13504
13612
  "decode",
@@ -18089,6 +18197,20 @@ var TrackSchema = object({
18089
18197
  * `=== true` and render nothing otherwise — never infer "no rider".
18090
18198
  */
18091
18199
  hasRider: boolean().optional(),
18200
+ /**
18201
+ * WHY this track ended without a NATIVE best-shot tile
18202
+ * ([D276](../decisions/adr-0276-a-stand-in-tile-is-provisional-and-a-close-says-why.md)) —
18203
+ * a composed token line (`no-key-frame capture=keyframe:native-missx4`,
18204
+ * `derive-returned-null tile=standin`, …) written at close and CLEARED by
18205
+ * the late-keyFrame upgrade when a native tile lands after all. The
18206
+ * operator-facing answer to "perché manca l'immagine?" on a track whose
18207
+ * tile is a face/plate stand-in, a raster crop, or an icon.
18208
+ *
18209
+ * **Absent ≠ "missed silently"**: a row written before the column, a hub
18210
+ * that predates the field, and every track whose tile landed native all
18211
+ * omit it. Render nothing when absent.
18212
+ */
18213
+ previewMissReason: string().optional(),
18092
18214
  ...TrackFlagFields,
18093
18215
  ...TrackRetrainFields
18094
18216
  });
@@ -29376,6 +29498,13 @@ var LoggingSettingsPatchSchema = object({
29376
29498
  * anyone but its owner.
29377
29499
  */
29378
29500
  var ReportedLoadContributionSchema = LoadContributionSchema.extend({ addonId: string() });
29501
+ /**
29502
+ * One per-camera failure counter, plus WHO reported it.
29503
+ *
29504
+ * Same rule as {@link ReportedLoadContributionSchema}: `addonId` is stamped by
29505
+ * the hub as it enumerates providers, never by the contributor.
29506
+ */
29507
+ var ReportedFailureContributionSchema = FailureContributionSchema.extend({ addonId: string() });
29379
29508
  var GetLoggingSettingsInputSchema = object({
29380
29509
  scopeNodeId: string().optional(),
29381
29510
  /**
@@ -29434,7 +29563,7 @@ method(_void(), FeatureManifestSchema), method(_void(), HealthStatusSchema), met
29434
29563
  }), method(_void(), SiteLocationStatusSchema, {
29435
29564
  kind: "mutation",
29436
29565
  auth: "admin"
29437
- }), method(_void(), RequestCensusStatusSchema, { auth: "admin" }), method(_void(), array(ReportedLoadContributionSchema).readonly(), { auth: "admin" }), method(GetLoggingSettingsInputSchema, LoggingSettingsStateSchema, { auth: "admin" }), method(SetLoggingSettingsInputSchema, LoggingSettingsStateSchema, {
29566
+ }), method(_void(), RequestCensusStatusSchema, { auth: "admin" }), method(_void(), array(ReportedLoadContributionSchema).readonly(), { auth: "admin" }), method(_void(), array(ReportedFailureContributionSchema).readonly(), { auth: "admin" }), method(GetLoggingSettingsInputSchema, LoggingSettingsStateSchema, { auth: "admin" }), method(SetLoggingSettingsInputSchema, LoggingSettingsStateSchema, {
29438
29567
  kind: "mutation",
29439
29568
  auth: "admin"
29440
29569
  });
@@ -33490,6 +33619,12 @@ Object.freeze({
33490
33619
  addonId: null,
33491
33620
  access: "create"
33492
33621
  },
33622
+ "failureContribution.list": {
33623
+ capName: "failure-contribution",
33624
+ capScope: "system",
33625
+ addonId: null,
33626
+ access: "view"
33627
+ },
33493
33628
  "fanControl.setDirection": {
33494
33629
  capName: "fan-control",
33495
33630
  capScope: "device",
@@ -36796,6 +36931,12 @@ Object.freeze({
36796
36931
  addonId: null,
36797
36932
  access: "create"
36798
36933
  },
36934
+ "system.getFailureContributions": {
36935
+ capName: "system",
36936
+ capScope: "system",
36937
+ addonId: null,
36938
+ access: "view"
36939
+ },
36799
36940
  "system.getLoadContributions": {
36800
36941
  capName: "system",
36801
36942
  capScope: "system",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-provider-rtsp",
3
- "version": "1.2.38",
3
+ "version": "1.2.39",
4
4
  "description": "Generic RTSP camera device provider addon for CamStack",
5
5
  "keywords": [
6
6
  "camstack",