@camstack/addon-smtp-nodemailer 1.2.45 → 1.2.46
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/smtp.addon.js +259 -174
- package/dist/smtp.addon.mjs +259 -174
- package/package.json +1 -1
package/dist/smtp.addon.js
CHANGED
|
@@ -12941,6 +12941,114 @@ method(object({
|
|
|
12941
12941
|
height: number()
|
|
12942
12942
|
}), EmbeddingResultSchema, { auth: "admin" }), method(object({ text: string() }), EmbeddingResultSchema, { auth: "admin" }), method(_void(), EmbeddingInfoSchema, { auth: "admin" });
|
|
12943
12943
|
/**
|
|
12944
|
+
* `failure-contribution` — the capability an addon reports its OWN losses
|
|
12945
|
+
* through, per camera, with the denominator attached. It stores nothing.
|
|
12946
|
+
*
|
|
12947
|
+
* ## The twin of `load-contribution`, and why it is a twin and not a field
|
|
12948
|
+
*
|
|
12949
|
+
* `load-contribution` answers *what did this camera COST*. This answers *what
|
|
12950
|
+
* did this camera LOSE*. The reporting discipline is identical and deliberately
|
|
12951
|
+
* copied: the contributor reports what it already knows, hub-main adds only
|
|
12952
|
+
* `addonId`, nothing needs global knowledge, and there is no central list for
|
|
12953
|
+
* somebody to forget to edit.
|
|
12954
|
+
*
|
|
12955
|
+
* They are not merged, because their invariants are opposites:
|
|
12956
|
+
*
|
|
12957
|
+
* - a `load-contribution` measurement is **absent, never zero** — a zero would
|
|
12958
|
+
* claim a camera cost nothing, which is a measurement nobody made;
|
|
12959
|
+
* - a `failure-contribution` zero is the **most valuable value on the
|
|
12960
|
+
* surface** — `attempts: 400, succeeded: 400` is the proof a fix landed,
|
|
12961
|
+
* and it is exactly what an absent entry cannot say.
|
|
12962
|
+
*
|
|
12963
|
+
* Putting a loss counter on a cost entry would also break the reconciliation
|
|
12964
|
+
* that gives `load-contribution` its point: contributions are subtracted from
|
|
12965
|
+
* `metrics.node-processes-snapshot` to find processes nobody claims. A failure
|
|
12966
|
+
* has no process.
|
|
12967
|
+
*
|
|
12968
|
+
* ## Why not a log line, since the counters already exist
|
|
12969
|
+
*
|
|
12970
|
+
* Several of these paths already counted themselves — `CaptureScheduler`'s
|
|
12971
|
+
* per-device window, `KeyFrameCaptureLog`, `bumpCropMetric`. Every one of them
|
|
12972
|
+
* ends in a log line, and a log line is the thing the operator asked to stop
|
|
12973
|
+
* needing: *"possiamo armare questi errori intanto? Così al prossimo giro
|
|
12974
|
+
* ricontrolliamo tutti questi punti"*. Reading them meant grepping Loki and
|
|
12975
|
+
* hand-correlating timestamps, which is how a 22% thumbnail gap and a 3-hour
|
|
12976
|
+
* media blackout were both diagnosed. The counters stay; this is where they can
|
|
12977
|
+
* be READ.
|
|
12978
|
+
*
|
|
12979
|
+
* ## The rate is served with its denominator or not at all
|
|
12980
|
+
*
|
|
12981
|
+
* Every entry carries `attempts` and `succeeded`. A miss count alone is
|
|
12982
|
+
* unreadable: on 2026-08-28 the enrichment-crop miss count read as "35x worse
|
|
12983
|
+
* than yesterday" and was **flat across twelve hours** once divided by the
|
|
12984
|
+
* successes on the same path. A surface that publishes only the numerator
|
|
12985
|
+
* reproduces that mistake on every read.
|
|
12986
|
+
*
|
|
12987
|
+
* ## Shape
|
|
12988
|
+
*
|
|
12989
|
+
* Copied from `load-contribution.cap.ts` (`mode: 'collection'`,
|
|
12990
|
+
* `internal: true`, `mount: { kind: 'skip' }`): no tRPC route of its own and no
|
|
12991
|
+
* generated hooks, while `addons.listCapabilityProviders` still enumerates it
|
|
12992
|
+
* and the hub's `CapabilityRegistry` still holds an RPC proxy per provider — so
|
|
12993
|
+
* a forked runner's entries reach hub-main over transport that already exists.
|
|
12994
|
+
* No new UDS message, no second registry (D3). The operator reads the assembled
|
|
12995
|
+
* result through `system.getFailureContributions`.
|
|
12996
|
+
*/
|
|
12997
|
+
var FailureReasonCountSchema = object({
|
|
12998
|
+
/**
|
|
12999
|
+
* Why the attempt did not land, in the contributor's own vocabulary —
|
|
13000
|
+
* `worker-lease-gone`, `queue-overflow`, `timeout`, `empty-read`. The same
|
|
13001
|
+
* strings that already appear in this repo's logs and, where one exists, the
|
|
13002
|
+
* same string the per-track `previewMissReason` records (D276): a second
|
|
13003
|
+
* vocabulary for the same loss would make the row and the counter
|
|
13004
|
+
* un-joinable.
|
|
13005
|
+
*/
|
|
13006
|
+
reason: string(),
|
|
13007
|
+
count: number().int().nonnegative()
|
|
13008
|
+
});
|
|
13009
|
+
var FailureContributionSchema = object({
|
|
13010
|
+
/**
|
|
13011
|
+
* The failing path — `enrichment-crop`, `inference`, `plate-ocr`,
|
|
13012
|
+
* `person-over-vehicle`. Free text, for the reason `load-contribution` keeps
|
|
13013
|
+
* `unit` free: the families are owned by different addons and a shared enum
|
|
13014
|
+
* is a central list that rots invisibly.
|
|
13015
|
+
*/
|
|
13016
|
+
family: string(),
|
|
13017
|
+
/**
|
|
13018
|
+
* The NUMERIC device id — the same value every log line carries as
|
|
13019
|
+
* `tags.deviceId`. Never nullable and never absent: a contributor that
|
|
13020
|
+
* cannot name the camera must not emit the entry, because a fleet total
|
|
13021
|
+
* cannot answer the only question anybody asks of this surface.
|
|
13022
|
+
*/
|
|
13023
|
+
deviceId: number().int().positive(),
|
|
13024
|
+
/**
|
|
13025
|
+
* A second dimension inside the family: the model / step id for an inference
|
|
13026
|
+
* timeout, so "which camera AND which model" is one read. Absent when the
|
|
13027
|
+
* family has a single variant.
|
|
13028
|
+
*/
|
|
13029
|
+
variant: string().optional(),
|
|
13030
|
+
/**
|
|
13031
|
+
* Epoch ms this counter started — the INCARNATION MARKER. A consumer
|
|
13032
|
+
* differencing two reads must drop the interval when it changes, because the
|
|
13033
|
+
* counter restarted from zero in a respawned runner. Same discipline as
|
|
13034
|
+
* `LoadContribution.startedAtMs`.
|
|
13035
|
+
*/
|
|
13036
|
+
sinceMs: number(),
|
|
13037
|
+
/** Epoch ms it was read. `atMs - sinceMs` is the interval this covers. */
|
|
13038
|
+
atMs: number(),
|
|
13039
|
+
/**
|
|
13040
|
+
* THE DENOMINATOR — every attempt on this path for this camera in the
|
|
13041
|
+
* window. A failure count published without it is the mistake this schema
|
|
13042
|
+
* exists to make impossible.
|
|
13043
|
+
*/
|
|
13044
|
+
attempts: number().int().nonnegative(),
|
|
13045
|
+
/** Attempts that landed. `attempts - succeeded` is the loss. */
|
|
13046
|
+
succeeded: number().int().nonnegative(),
|
|
13047
|
+
/** The loss, partitioned. Sums to `attempts - succeeded`. */
|
|
13048
|
+
reasons: array(FailureReasonCountSchema).readonly()
|
|
13049
|
+
});
|
|
13050
|
+
method(_void(), array(FailureContributionSchema).readonly());
|
|
13051
|
+
/**
|
|
12944
13052
|
* filesystem-browse — per-node capability for browsing the node's local
|
|
12945
13053
|
* filesystem. Reads are unconfined (whole filesystem, from `/` down); WRITES
|
|
12946
13054
|
* are sandboxed to operator-configured allowed roots (D115). Used by the
|
|
@@ -13462,6 +13570,68 @@ method(LlmGenerateBaseInputSchema, LlmGenerateResultSchema, { kind: "mutation" }
|
|
|
13462
13570
|
kind: "mutation",
|
|
13463
13571
|
auth: "admin"
|
|
13464
13572
|
});
|
|
13573
|
+
var LoadContributionSchema = object({
|
|
13574
|
+
role: _enum([
|
|
13575
|
+
"decode",
|
|
13576
|
+
"transcode",
|
|
13577
|
+
"recording",
|
|
13578
|
+
"streaming",
|
|
13579
|
+
"detection"
|
|
13580
|
+
]),
|
|
13581
|
+
/**
|
|
13582
|
+
* The NUMERIC device id — the same value every log line carries as
|
|
13583
|
+
* `tags.deviceId`. `null` means this cost genuinely belongs to no single
|
|
13584
|
+
* camera (a shared pool), NOT that the contributor forgot to look it up: a
|
|
13585
|
+
* contributor that cannot name its camera must not emit the entry at all,
|
|
13586
|
+
* because an unnamed per-camera entry is indistinguishable from a shared one
|
|
13587
|
+
* and would quietly turn one camera's cost into everybody's.
|
|
13588
|
+
*/
|
|
13589
|
+
deviceId: number().int().positive().nullable(),
|
|
13590
|
+
attribution: _enum([
|
|
13591
|
+
"measured",
|
|
13592
|
+
"accounted",
|
|
13593
|
+
"unattributable"
|
|
13594
|
+
]),
|
|
13595
|
+
/**
|
|
13596
|
+
* What ONE entry is, in the contributor's own words — `615/high`,
|
|
13597
|
+
* `617/native`, `cuda:0 shared pool`. Free text because the unit differs per
|
|
13598
|
+
* family and inventing a common one would lose the only information that
|
|
13599
|
+
* makes two entries for the same camera distinguishable.
|
|
13600
|
+
*/
|
|
13601
|
+
unit: string(),
|
|
13602
|
+
/**
|
|
13603
|
+
* The OS process this cost lives in, when there is one. Present so a
|
|
13604
|
+
* consumer can (a) tell two generations of the same unit apart across a
|
|
13605
|
+
* restart, and (b) subtract claimed processes from the node's process
|
|
13606
|
+
* snapshot to see what NOBODY claimed. Absent for an entry that owns no
|
|
13607
|
+
* process of its own.
|
|
13608
|
+
*/
|
|
13609
|
+
pid: number().int().positive().optional(),
|
|
13610
|
+
/**
|
|
13611
|
+
* When this generation started. The pid's incarnation marker: a consumer
|
|
13612
|
+
* differencing {@link LoadContributionSchema.shape.cpuSeconds} must drop the
|
|
13613
|
+
* window when this changes, because the counter restarted from zero in a new
|
|
13614
|
+
* process.
|
|
13615
|
+
*/
|
|
13616
|
+
startedAtMs: number().optional(),
|
|
13617
|
+
/**
|
|
13618
|
+
* CUMULATIVE CPU seconds this unit has consumed since it started — user +
|
|
13619
|
+
* system, read from the child's own `/proc/<pid>/stat` at the moment the
|
|
13620
|
+
* contribution is asked for.
|
|
13621
|
+
*
|
|
13622
|
+
* Cumulative and not a rate on purpose: a rate needs a window, a window
|
|
13623
|
+
* needs a sampler, and a new per-node sampler is the defect half of
|
|
13624
|
+
* `docs/architecture/load-ledger.md` documents. A counter can be differenced
|
|
13625
|
+
* by whoever already keeps a history; a rate cannot be un-averaged.
|
|
13626
|
+
*
|
|
13627
|
+
* Absent — never zero — on a node with no `/proc`, on a read failure, and on
|
|
13628
|
+
* an entry with no process.
|
|
13629
|
+
*/
|
|
13630
|
+
cpuSeconds: number().optional(),
|
|
13631
|
+
/** Resident bytes of this unit's process, same source and same rules. */
|
|
13632
|
+
rssBytes: number().optional()
|
|
13633
|
+
});
|
|
13634
|
+
method(_void(), array(LoadContributionSchema).readonly());
|
|
13465
13635
|
/**
|
|
13466
13636
|
* `log-channels` — the capability an addon DECLARES its diagnostic channels
|
|
13467
13637
|
* through. It stores nothing.
|
|
@@ -13538,176 +13708,6 @@ method(LogEntrySchema, _void(), { kind: "mutation" }), method(object({
|
|
|
13538
13708
|
tags: record(string(), string()).optional()
|
|
13539
13709
|
}), array(LogEntrySchema).readonly());
|
|
13540
13710
|
/**
|
|
13541
|
-
* `failure-contribution` — the capability an addon reports its OWN losses
|
|
13542
|
-
* through, per camera, with the denominator attached. It stores nothing.
|
|
13543
|
-
*
|
|
13544
|
-
* ## The twin of `load-contribution`, and why it is a twin and not a field
|
|
13545
|
-
*
|
|
13546
|
-
* `load-contribution` answers *what did this camera COST*. This answers *what
|
|
13547
|
-
* did this camera LOSE*. The reporting discipline is identical and deliberately
|
|
13548
|
-
* copied: the contributor reports what it already knows, hub-main adds only
|
|
13549
|
-
* `addonId`, nothing needs global knowledge, and there is no central list for
|
|
13550
|
-
* somebody to forget to edit.
|
|
13551
|
-
*
|
|
13552
|
-
* They are not merged, because their invariants are opposites:
|
|
13553
|
-
*
|
|
13554
|
-
* - a `load-contribution` measurement is **absent, never zero** — a zero would
|
|
13555
|
-
* claim a camera cost nothing, which is a measurement nobody made;
|
|
13556
|
-
* - a `failure-contribution` zero is the **most valuable value on the
|
|
13557
|
-
* surface** — `attempts: 400, succeeded: 400` is the proof a fix landed,
|
|
13558
|
-
* and it is exactly what an absent entry cannot say.
|
|
13559
|
-
*
|
|
13560
|
-
* Putting a loss counter on a cost entry would also break the reconciliation
|
|
13561
|
-
* that gives `load-contribution` its point: contributions are subtracted from
|
|
13562
|
-
* `metrics.node-processes-snapshot` to find processes nobody claims. A failure
|
|
13563
|
-
* has no process.
|
|
13564
|
-
*
|
|
13565
|
-
* ## Why not a log line, since the counters already exist
|
|
13566
|
-
*
|
|
13567
|
-
* Several of these paths already counted themselves — `CaptureScheduler`'s
|
|
13568
|
-
* per-device window, `KeyFrameCaptureLog`, `bumpCropMetric`. Every one of them
|
|
13569
|
-
* ends in a log line, and a log line is the thing the operator asked to stop
|
|
13570
|
-
* needing: *"possiamo armare questi errori intanto? Così al prossimo giro
|
|
13571
|
-
* ricontrolliamo tutti questi punti"*. Reading them meant grepping Loki and
|
|
13572
|
-
* hand-correlating timestamps, which is how a 22% thumbnail gap and a 3-hour
|
|
13573
|
-
* media blackout were both diagnosed. The counters stay; this is where they can
|
|
13574
|
-
* be READ.
|
|
13575
|
-
*
|
|
13576
|
-
* ## The rate is served with its denominator or not at all
|
|
13577
|
-
*
|
|
13578
|
-
* Every entry carries `attempts` and `succeeded`. A miss count alone is
|
|
13579
|
-
* unreadable: on 2026-08-28 the enrichment-crop miss count read as "35x worse
|
|
13580
|
-
* than yesterday" and was **flat across twelve hours** once divided by the
|
|
13581
|
-
* successes on the same path. A surface that publishes only the numerator
|
|
13582
|
-
* reproduces that mistake on every read.
|
|
13583
|
-
*
|
|
13584
|
-
* ## Shape
|
|
13585
|
-
*
|
|
13586
|
-
* Copied from `load-contribution.cap.ts` (`mode: 'collection'`,
|
|
13587
|
-
* `internal: true`, `mount: { kind: 'skip' }`): no tRPC route of its own and no
|
|
13588
|
-
* generated hooks, while `addons.listCapabilityProviders` still enumerates it
|
|
13589
|
-
* and the hub's `CapabilityRegistry` still holds an RPC proxy per provider — so
|
|
13590
|
-
* a forked runner's entries reach hub-main over transport that already exists.
|
|
13591
|
-
* No new UDS message, no second registry (D3). The operator reads the assembled
|
|
13592
|
-
* result through `system.getFailureContributions`.
|
|
13593
|
-
*/
|
|
13594
|
-
var FailureReasonCountSchema = object({
|
|
13595
|
-
/**
|
|
13596
|
-
* Why the attempt did not land, in the contributor's own vocabulary —
|
|
13597
|
-
* `worker-lease-gone`, `queue-overflow`, `timeout`, `empty-read`. The same
|
|
13598
|
-
* strings that already appear in this repo's logs and, where one exists, the
|
|
13599
|
-
* same string the per-track `previewMissReason` records (D276): a second
|
|
13600
|
-
* vocabulary for the same loss would make the row and the counter
|
|
13601
|
-
* un-joinable.
|
|
13602
|
-
*/
|
|
13603
|
-
reason: string(),
|
|
13604
|
-
count: number().int().nonnegative()
|
|
13605
|
-
});
|
|
13606
|
-
var FailureContributionSchema = object({
|
|
13607
|
-
/**
|
|
13608
|
-
* The failing path — `enrichment-crop`, `inference`, `plate-ocr`,
|
|
13609
|
-
* `person-over-vehicle`. Free text, for the reason `load-contribution` keeps
|
|
13610
|
-
* `unit` free: the families are owned by different addons and a shared enum
|
|
13611
|
-
* is a central list that rots invisibly.
|
|
13612
|
-
*/
|
|
13613
|
-
family: string(),
|
|
13614
|
-
/**
|
|
13615
|
-
* The NUMERIC device id — the same value every log line carries as
|
|
13616
|
-
* `tags.deviceId`. Never nullable and never absent: a contributor that
|
|
13617
|
-
* cannot name the camera must not emit the entry, because a fleet total
|
|
13618
|
-
* cannot answer the only question anybody asks of this surface.
|
|
13619
|
-
*/
|
|
13620
|
-
deviceId: number().int().positive(),
|
|
13621
|
-
/**
|
|
13622
|
-
* A second dimension inside the family: the model / step id for an inference
|
|
13623
|
-
* timeout, so "which camera AND which model" is one read. Absent when the
|
|
13624
|
-
* family has a single variant.
|
|
13625
|
-
*/
|
|
13626
|
-
variant: string().optional(),
|
|
13627
|
-
/**
|
|
13628
|
-
* Epoch ms this counter started — the INCARNATION MARKER. A consumer
|
|
13629
|
-
* differencing two reads must drop the interval when it changes, because the
|
|
13630
|
-
* counter restarted from zero in a respawned runner. Same discipline as
|
|
13631
|
-
* `LoadContribution.startedAtMs`.
|
|
13632
|
-
*/
|
|
13633
|
-
sinceMs: number(),
|
|
13634
|
-
/** Epoch ms it was read. `atMs - sinceMs` is the interval this covers. */
|
|
13635
|
-
atMs: number(),
|
|
13636
|
-
/**
|
|
13637
|
-
* THE DENOMINATOR — every attempt on this path for this camera in the
|
|
13638
|
-
* window. A failure count published without it is the mistake this schema
|
|
13639
|
-
* exists to make impossible.
|
|
13640
|
-
*/
|
|
13641
|
-
attempts: number().int().nonnegative(),
|
|
13642
|
-
/** Attempts that landed. `attempts - succeeded` is the loss. */
|
|
13643
|
-
succeeded: number().int().nonnegative(),
|
|
13644
|
-
/** The loss, partitioned. Sums to `attempts - succeeded`. */
|
|
13645
|
-
reasons: array(FailureReasonCountSchema).readonly()
|
|
13646
|
-
});
|
|
13647
|
-
method(_void(), array(FailureContributionSchema).readonly());
|
|
13648
|
-
var LoadContributionSchema = object({
|
|
13649
|
-
role: _enum([
|
|
13650
|
-
"decode",
|
|
13651
|
-
"transcode",
|
|
13652
|
-
"recording",
|
|
13653
|
-
"streaming",
|
|
13654
|
-
"detection"
|
|
13655
|
-
]),
|
|
13656
|
-
/**
|
|
13657
|
-
* The NUMERIC device id — the same value every log line carries as
|
|
13658
|
-
* `tags.deviceId`. `null` means this cost genuinely belongs to no single
|
|
13659
|
-
* camera (a shared pool), NOT that the contributor forgot to look it up: a
|
|
13660
|
-
* contributor that cannot name its camera must not emit the entry at all,
|
|
13661
|
-
* because an unnamed per-camera entry is indistinguishable from a shared one
|
|
13662
|
-
* and would quietly turn one camera's cost into everybody's.
|
|
13663
|
-
*/
|
|
13664
|
-
deviceId: number().int().positive().nullable(),
|
|
13665
|
-
attribution: _enum([
|
|
13666
|
-
"measured",
|
|
13667
|
-
"accounted",
|
|
13668
|
-
"unattributable"
|
|
13669
|
-
]),
|
|
13670
|
-
/**
|
|
13671
|
-
* What ONE entry is, in the contributor's own words — `615/high`,
|
|
13672
|
-
* `617/native`, `cuda:0 shared pool`. Free text because the unit differs per
|
|
13673
|
-
* family and inventing a common one would lose the only information that
|
|
13674
|
-
* makes two entries for the same camera distinguishable.
|
|
13675
|
-
*/
|
|
13676
|
-
unit: string(),
|
|
13677
|
-
/**
|
|
13678
|
-
* The OS process this cost lives in, when there is one. Present so a
|
|
13679
|
-
* consumer can (a) tell two generations of the same unit apart across a
|
|
13680
|
-
* restart, and (b) subtract claimed processes from the node's process
|
|
13681
|
-
* snapshot to see what NOBODY claimed. Absent for an entry that owns no
|
|
13682
|
-
* process of its own.
|
|
13683
|
-
*/
|
|
13684
|
-
pid: number().int().positive().optional(),
|
|
13685
|
-
/**
|
|
13686
|
-
* When this generation started. The pid's incarnation marker: a consumer
|
|
13687
|
-
* differencing {@link LoadContributionSchema.shape.cpuSeconds} must drop the
|
|
13688
|
-
* window when this changes, because the counter restarted from zero in a new
|
|
13689
|
-
* process.
|
|
13690
|
-
*/
|
|
13691
|
-
startedAtMs: number().optional(),
|
|
13692
|
-
/**
|
|
13693
|
-
* CUMULATIVE CPU seconds this unit has consumed since it started — user +
|
|
13694
|
-
* system, read from the child's own `/proc/<pid>/stat` at the moment the
|
|
13695
|
-
* contribution is asked for.
|
|
13696
|
-
*
|
|
13697
|
-
* Cumulative and not a rate on purpose: a rate needs a window, a window
|
|
13698
|
-
* needs a sampler, and a new per-node sampler is the defect half of
|
|
13699
|
-
* `docs/architecture/load-ledger.md` documents. A counter can be differenced
|
|
13700
|
-
* by whoever already keeps a history; a rate cannot be un-averaged.
|
|
13701
|
-
*
|
|
13702
|
-
* Absent — never zero — on a node with no `/proc`, on a read failure, and on
|
|
13703
|
-
* an entry with no process.
|
|
13704
|
-
*/
|
|
13705
|
-
cpuSeconds: number().optional(),
|
|
13706
|
-
/** Resident bytes of this unit's process, same source and same rules. */
|
|
13707
|
-
rssBytes: number().optional()
|
|
13708
|
-
});
|
|
13709
|
-
method(_void(), array(LoadContributionSchema).readonly());
|
|
13710
|
-
/**
|
|
13711
13711
|
* `login-method` — collection cap through which auth addons contribute
|
|
13712
13712
|
* their pre-auth login surfaces to the login page. This is the SINGLE,
|
|
13713
13713
|
* generic mechanism that supersedes the dead `auth.listProviders` reader:
|
|
@@ -18367,12 +18367,53 @@ var MediaFileKindEnum = _enum([
|
|
|
18367
18367
|
"keyFrameSmall",
|
|
18368
18368
|
"thumbnailSmall"
|
|
18369
18369
|
]);
|
|
18370
|
+
/**
|
|
18371
|
+
* One media row ON THE WIRE: what it is, how big it is, and WHERE ITS BYTES
|
|
18372
|
+
* ARE — never the bytes themselves.
|
|
18373
|
+
*
|
|
18374
|
+
* ## Why `url` and not `base64`
|
|
18375
|
+
*
|
|
18376
|
+
* Measured on the live hub 2026-08-30: `getTrackMedia {trackId, deviceId}`
|
|
18377
|
+
* with no `kinds` returned 6 rows / **3 597 219 B**, of which `keyFrame` alone
|
|
18378
|
+
* was **2 824 077 B** — one full-resolution frame, base64, so +33 % on the
|
|
18379
|
+
* wire. Forty events is ~144 MB. Every byte of it was read off disk,
|
|
18380
|
+
* base64-encoded, held whole in a unary tRPC envelope, and materialised in
|
|
18381
|
+
* hub-main's heap on the way past — for an `<img>` that would have cached it.
|
|
18382
|
+
*
|
|
18383
|
+
* `url` points at the `event-media` data plane
|
|
18384
|
+
* (`/addon/<addonId>/event-media/<storedKey>`), which serves the same blob
|
|
18385
|
+
* with an ETag and `Cache-Control: immutable`, honours conditional GETs, can
|
|
18386
|
+
* render a `?variant=thumb`, and streams. The hub gate in front of it requires
|
|
18387
|
+
* a bearer or the session cookie (`access: 'authenticated'`), so the bytes are
|
|
18388
|
+
* no less protected than they were inside a `view`-level cap response — see
|
|
18389
|
+
* `data-plane-access.ts` for the rule and the one gap it does not close
|
|
18390
|
+
* (per-device scoping).
|
|
18391
|
+
*
|
|
18392
|
+
* The URL is built from the row's **stored** key, which is not always its
|
|
18393
|
+
* published `kind`: a track's face/plate crop is stored as `crop` under
|
|
18394
|
+
* `('face'|'plate', '<prefix>-<trackId>')` and published as
|
|
18395
|
+
* `faceCrop`/`plateCrop`. `MediaStore.getByKey` knows only the stored key.
|
|
18396
|
+
*
|
|
18397
|
+
* ## `base64` is TRANSITIONAL and is going away
|
|
18398
|
+
*
|
|
18399
|
+
* It is still populated for one reason: the deployed viewer's track-detail
|
|
18400
|
+
* HERO tile reads it (`use-track-media-entry.ts` → `parseMediaFiles`, which
|
|
18401
|
+
* REQUIRES the field), and a row without it parses as a FAILED read — the red
|
|
18402
|
+
* triangle — not as absence. Removing the field before that viewer ships is an
|
|
18403
|
+
* outage, not a cleanup. Once the viewer takes its hero bytes from `url`,
|
|
18404
|
+
* delete this line and the `withBytes` pass-through in
|
|
18405
|
+
* `analytics-query-facade.ts`; nothing else reads it.
|
|
18406
|
+
*/
|
|
18370
18407
|
var MediaFileSchema = object({
|
|
18371
18408
|
key: string(),
|
|
18372
18409
|
kind: MediaFileKindEnum,
|
|
18373
|
-
base64: string(),
|
|
18374
18410
|
sizeBytes: number(),
|
|
18375
18411
|
timestamp: number()
|
|
18412
|
+
}).extend({
|
|
18413
|
+
/** `/addon/<addonId>/event-media/<encoded stored key>`. Always present. */
|
|
18414
|
+
url: string(),
|
|
18415
|
+
/** @deprecated Transitional — see the schema docblock. Use {@link url}. */
|
|
18416
|
+
base64: string()
|
|
18376
18417
|
});
|
|
18377
18418
|
/**
|
|
18378
18419
|
* One media row WITHOUT its bytes.
|
|
@@ -18384,7 +18425,9 @@ var MediaFileSchema = object({
|
|
|
18384
18425
|
* blocks the whole view.
|
|
18385
18426
|
*
|
|
18386
18427
|
* `sizeBytes` is carried because it is what lets a client decide between the
|
|
18387
|
-
* stored blob and a `?variant=thumb` rendering without fetching either
|
|
18428
|
+
* stored blob and a `?variant=thumb` rendering without fetching either, and
|
|
18429
|
+
* `url` because a client that had to build the plane path itself is a second
|
|
18430
|
+
* copy of a route — the embed, the viewer and the admin UI each grew one.
|
|
18388
18431
|
*/
|
|
18389
18432
|
var MediaFileInfoSchema = MediaFileSchema.omit({ base64: true });
|
|
18390
18433
|
/**
|
|
@@ -19073,6 +19116,9 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19073
19116
|
}), array(MediaFileSchema).readonly()), method(object({
|
|
19074
19117
|
trackId: string(),
|
|
19075
19118
|
deviceId: number()
|
|
19119
|
+
}), array(MediaFileInfoSchema).readonly()), method(object({
|
|
19120
|
+
eventId: string(),
|
|
19121
|
+
deviceId: number()
|
|
19076
19122
|
}), array(MediaFileInfoSchema).readonly()), method(SearchObjectEventsInput, array(ScoredObjectEventSchema).readonly()), method(object({}), WipeObjectEmbeddingsResultSchema, {
|
|
19077
19123
|
kind: "mutation",
|
|
19078
19124
|
auth: "admin"
|
|
@@ -23346,10 +23392,24 @@ var FaceClusterSchema = object({
|
|
|
23346
23392
|
size: number().int(),
|
|
23347
23393
|
cohesion: number()
|
|
23348
23394
|
});
|
|
23395
|
+
/**
|
|
23396
|
+
* One gallery media row: what the crop is, how big it is, and WHERE its bytes
|
|
23397
|
+
* are — never the bytes.
|
|
23398
|
+
*
|
|
23399
|
+
* `base64` was deleted here rather than deprecated. `MediaFile.base64` (the
|
|
23400
|
+
* track/event contract) is still populated because a deployed viewer requires
|
|
23401
|
+
* the field to parse a row at all; this method has no such reader. Its ONE
|
|
23402
|
+
* caller is the admin UI's detail modal, which was building
|
|
23403
|
+
* `data:image/jpeg;base64,…` from a row whose `key` sat right beside it, in a
|
|
23404
|
+
* dialog already rendering its key FRAME from the `event-media` plane.
|
|
23405
|
+
*
|
|
23406
|
+
* `url` is `/addon/<addonId>/event-media/<encoded key>`. The plane resolves a
|
|
23407
|
+
* media key directly, so this needed no new plane and no new access decision.
|
|
23408
|
+
*/
|
|
23349
23409
|
var MediaFileLiteSchema$1 = object({
|
|
23350
23410
|
key: string(),
|
|
23351
23411
|
kind: string(),
|
|
23352
|
-
|
|
23412
|
+
url: string(),
|
|
23353
23413
|
sizeBytes: number(),
|
|
23354
23414
|
timestamp: number()
|
|
23355
23415
|
});
|
|
@@ -25601,10 +25661,24 @@ var PlateInfoSchema = object({
|
|
|
25601
25661
|
*/
|
|
25602
25662
|
cropUrl: string().optional()
|
|
25603
25663
|
});
|
|
25664
|
+
/**
|
|
25665
|
+
* One gallery media row: what the crop is, how big it is, and WHERE its bytes
|
|
25666
|
+
* are — never the bytes.
|
|
25667
|
+
*
|
|
25668
|
+
* `base64` was deleted here rather than deprecated. `MediaFile.base64` (the
|
|
25669
|
+
* track/event contract) is still populated because a deployed viewer requires
|
|
25670
|
+
* the field to parse a row at all; this method has no such reader. Its ONE
|
|
25671
|
+
* caller is the admin UI's detail modal, which was building
|
|
25672
|
+
* `data:image/jpeg;base64,…` from a row whose `key` sat right beside it, in a
|
|
25673
|
+
* dialog already rendering its key FRAME from the `event-media` plane.
|
|
25674
|
+
*
|
|
25675
|
+
* `url` is `/addon/<addonId>/event-media/<encoded key>`. The plane resolves a
|
|
25676
|
+
* media key directly, so this needed no new plane and no new access decision.
|
|
25677
|
+
*/
|
|
25604
25678
|
var MediaFileLiteSchema = object({
|
|
25605
25679
|
key: string(),
|
|
25606
25680
|
kind: string(),
|
|
25607
|
-
|
|
25681
|
+
url: string(),
|
|
25608
25682
|
sizeBytes: number(),
|
|
25609
25683
|
timestamp: number()
|
|
25610
25684
|
});
|
|
@@ -31617,6 +31691,12 @@ Object.freeze({
|
|
|
31617
31691
|
addonId: null,
|
|
31618
31692
|
access: "view"
|
|
31619
31693
|
},
|
|
31694
|
+
"pipelineAnalytics.listEventMedia": {
|
|
31695
|
+
capName: "pipeline-analytics",
|
|
31696
|
+
capScope: "device",
|
|
31697
|
+
addonId: null,
|
|
31698
|
+
access: "view"
|
|
31699
|
+
},
|
|
31620
31700
|
"pipelineAnalytics.listGroups": {
|
|
31621
31701
|
capName: "pipeline-analytics",
|
|
31622
31702
|
capScope: "device",
|
|
@@ -35240,6 +35320,11 @@ Object.freeze({
|
|
|
35240
35320
|
form: "array",
|
|
35241
35321
|
optional: false
|
|
35242
35322
|
}],
|
|
35323
|
+
"pipelineAnalytics.listEventMedia": [{
|
|
35324
|
+
name: "deviceId",
|
|
35325
|
+
form: "single",
|
|
35326
|
+
optional: false
|
|
35327
|
+
}],
|
|
35243
35328
|
"pipelineAnalytics.listGroups": [{
|
|
35244
35329
|
name: "deviceIds",
|
|
35245
35330
|
form: "array",
|
package/dist/smtp.addon.mjs
CHANGED
|
@@ -12939,6 +12939,114 @@ method(object({
|
|
|
12939
12939
|
height: number()
|
|
12940
12940
|
}), EmbeddingResultSchema, { auth: "admin" }), method(object({ text: string() }), EmbeddingResultSchema, { auth: "admin" }), method(_void(), EmbeddingInfoSchema, { auth: "admin" });
|
|
12941
12941
|
/**
|
|
12942
|
+
* `failure-contribution` — the capability an addon reports its OWN losses
|
|
12943
|
+
* through, per camera, with the denominator attached. It stores nothing.
|
|
12944
|
+
*
|
|
12945
|
+
* ## The twin of `load-contribution`, and why it is a twin and not a field
|
|
12946
|
+
*
|
|
12947
|
+
* `load-contribution` answers *what did this camera COST*. This answers *what
|
|
12948
|
+
* did this camera LOSE*. The reporting discipline is identical and deliberately
|
|
12949
|
+
* copied: the contributor reports what it already knows, hub-main adds only
|
|
12950
|
+
* `addonId`, nothing needs global knowledge, and there is no central list for
|
|
12951
|
+
* somebody to forget to edit.
|
|
12952
|
+
*
|
|
12953
|
+
* They are not merged, because their invariants are opposites:
|
|
12954
|
+
*
|
|
12955
|
+
* - a `load-contribution` measurement is **absent, never zero** — a zero would
|
|
12956
|
+
* claim a camera cost nothing, which is a measurement nobody made;
|
|
12957
|
+
* - a `failure-contribution` zero is the **most valuable value on the
|
|
12958
|
+
* surface** — `attempts: 400, succeeded: 400` is the proof a fix landed,
|
|
12959
|
+
* and it is exactly what an absent entry cannot say.
|
|
12960
|
+
*
|
|
12961
|
+
* Putting a loss counter on a cost entry would also break the reconciliation
|
|
12962
|
+
* that gives `load-contribution` its point: contributions are subtracted from
|
|
12963
|
+
* `metrics.node-processes-snapshot` to find processes nobody claims. A failure
|
|
12964
|
+
* has no process.
|
|
12965
|
+
*
|
|
12966
|
+
* ## Why not a log line, since the counters already exist
|
|
12967
|
+
*
|
|
12968
|
+
* Several of these paths already counted themselves — `CaptureScheduler`'s
|
|
12969
|
+
* per-device window, `KeyFrameCaptureLog`, `bumpCropMetric`. Every one of them
|
|
12970
|
+
* ends in a log line, and a log line is the thing the operator asked to stop
|
|
12971
|
+
* needing: *"possiamo armare questi errori intanto? Così al prossimo giro
|
|
12972
|
+
* ricontrolliamo tutti questi punti"*. Reading them meant grepping Loki and
|
|
12973
|
+
* hand-correlating timestamps, which is how a 22% thumbnail gap and a 3-hour
|
|
12974
|
+
* media blackout were both diagnosed. The counters stay; this is where they can
|
|
12975
|
+
* be READ.
|
|
12976
|
+
*
|
|
12977
|
+
* ## The rate is served with its denominator or not at all
|
|
12978
|
+
*
|
|
12979
|
+
* Every entry carries `attempts` and `succeeded`. A miss count alone is
|
|
12980
|
+
* unreadable: on 2026-08-28 the enrichment-crop miss count read as "35x worse
|
|
12981
|
+
* than yesterday" and was **flat across twelve hours** once divided by the
|
|
12982
|
+
* successes on the same path. A surface that publishes only the numerator
|
|
12983
|
+
* reproduces that mistake on every read.
|
|
12984
|
+
*
|
|
12985
|
+
* ## Shape
|
|
12986
|
+
*
|
|
12987
|
+
* Copied from `load-contribution.cap.ts` (`mode: 'collection'`,
|
|
12988
|
+
* `internal: true`, `mount: { kind: 'skip' }`): no tRPC route of its own and no
|
|
12989
|
+
* generated hooks, while `addons.listCapabilityProviders` still enumerates it
|
|
12990
|
+
* and the hub's `CapabilityRegistry` still holds an RPC proxy per provider — so
|
|
12991
|
+
* a forked runner's entries reach hub-main over transport that already exists.
|
|
12992
|
+
* No new UDS message, no second registry (D3). The operator reads the assembled
|
|
12993
|
+
* result through `system.getFailureContributions`.
|
|
12994
|
+
*/
|
|
12995
|
+
var FailureReasonCountSchema = object({
|
|
12996
|
+
/**
|
|
12997
|
+
* Why the attempt did not land, in the contributor's own vocabulary —
|
|
12998
|
+
* `worker-lease-gone`, `queue-overflow`, `timeout`, `empty-read`. The same
|
|
12999
|
+
* strings that already appear in this repo's logs and, where one exists, the
|
|
13000
|
+
* same string the per-track `previewMissReason` records (D276): a second
|
|
13001
|
+
* vocabulary for the same loss would make the row and the counter
|
|
13002
|
+
* un-joinable.
|
|
13003
|
+
*/
|
|
13004
|
+
reason: string(),
|
|
13005
|
+
count: number().int().nonnegative()
|
|
13006
|
+
});
|
|
13007
|
+
var FailureContributionSchema = object({
|
|
13008
|
+
/**
|
|
13009
|
+
* The failing path — `enrichment-crop`, `inference`, `plate-ocr`,
|
|
13010
|
+
* `person-over-vehicle`. Free text, for the reason `load-contribution` keeps
|
|
13011
|
+
* `unit` free: the families are owned by different addons and a shared enum
|
|
13012
|
+
* is a central list that rots invisibly.
|
|
13013
|
+
*/
|
|
13014
|
+
family: string(),
|
|
13015
|
+
/**
|
|
13016
|
+
* The NUMERIC device id — the same value every log line carries as
|
|
13017
|
+
* `tags.deviceId`. Never nullable and never absent: a contributor that
|
|
13018
|
+
* cannot name the camera must not emit the entry, because a fleet total
|
|
13019
|
+
* cannot answer the only question anybody asks of this surface.
|
|
13020
|
+
*/
|
|
13021
|
+
deviceId: number().int().positive(),
|
|
13022
|
+
/**
|
|
13023
|
+
* A second dimension inside the family: the model / step id for an inference
|
|
13024
|
+
* timeout, so "which camera AND which model" is one read. Absent when the
|
|
13025
|
+
* family has a single variant.
|
|
13026
|
+
*/
|
|
13027
|
+
variant: string().optional(),
|
|
13028
|
+
/**
|
|
13029
|
+
* Epoch ms this counter started — the INCARNATION MARKER. A consumer
|
|
13030
|
+
* differencing two reads must drop the interval when it changes, because the
|
|
13031
|
+
* counter restarted from zero in a respawned runner. Same discipline as
|
|
13032
|
+
* `LoadContribution.startedAtMs`.
|
|
13033
|
+
*/
|
|
13034
|
+
sinceMs: number(),
|
|
13035
|
+
/** Epoch ms it was read. `atMs - sinceMs` is the interval this covers. */
|
|
13036
|
+
atMs: number(),
|
|
13037
|
+
/**
|
|
13038
|
+
* THE DENOMINATOR — every attempt on this path for this camera in the
|
|
13039
|
+
* window. A failure count published without it is the mistake this schema
|
|
13040
|
+
* exists to make impossible.
|
|
13041
|
+
*/
|
|
13042
|
+
attempts: number().int().nonnegative(),
|
|
13043
|
+
/** Attempts that landed. `attempts - succeeded` is the loss. */
|
|
13044
|
+
succeeded: number().int().nonnegative(),
|
|
13045
|
+
/** The loss, partitioned. Sums to `attempts - succeeded`. */
|
|
13046
|
+
reasons: array(FailureReasonCountSchema).readonly()
|
|
13047
|
+
});
|
|
13048
|
+
method(_void(), array(FailureContributionSchema).readonly());
|
|
13049
|
+
/**
|
|
12942
13050
|
* filesystem-browse — per-node capability for browsing the node's local
|
|
12943
13051
|
* filesystem. Reads are unconfined (whole filesystem, from `/` down); WRITES
|
|
12944
13052
|
* are sandboxed to operator-configured allowed roots (D115). Used by the
|
|
@@ -13460,6 +13568,68 @@ method(LlmGenerateBaseInputSchema, LlmGenerateResultSchema, { kind: "mutation" }
|
|
|
13460
13568
|
kind: "mutation",
|
|
13461
13569
|
auth: "admin"
|
|
13462
13570
|
});
|
|
13571
|
+
var LoadContributionSchema = object({
|
|
13572
|
+
role: _enum([
|
|
13573
|
+
"decode",
|
|
13574
|
+
"transcode",
|
|
13575
|
+
"recording",
|
|
13576
|
+
"streaming",
|
|
13577
|
+
"detection"
|
|
13578
|
+
]),
|
|
13579
|
+
/**
|
|
13580
|
+
* The NUMERIC device id — the same value every log line carries as
|
|
13581
|
+
* `tags.deviceId`. `null` means this cost genuinely belongs to no single
|
|
13582
|
+
* camera (a shared pool), NOT that the contributor forgot to look it up: a
|
|
13583
|
+
* contributor that cannot name its camera must not emit the entry at all,
|
|
13584
|
+
* because an unnamed per-camera entry is indistinguishable from a shared one
|
|
13585
|
+
* and would quietly turn one camera's cost into everybody's.
|
|
13586
|
+
*/
|
|
13587
|
+
deviceId: number().int().positive().nullable(),
|
|
13588
|
+
attribution: _enum([
|
|
13589
|
+
"measured",
|
|
13590
|
+
"accounted",
|
|
13591
|
+
"unattributable"
|
|
13592
|
+
]),
|
|
13593
|
+
/**
|
|
13594
|
+
* What ONE entry is, in the contributor's own words — `615/high`,
|
|
13595
|
+
* `617/native`, `cuda:0 shared pool`. Free text because the unit differs per
|
|
13596
|
+
* family and inventing a common one would lose the only information that
|
|
13597
|
+
* makes two entries for the same camera distinguishable.
|
|
13598
|
+
*/
|
|
13599
|
+
unit: string(),
|
|
13600
|
+
/**
|
|
13601
|
+
* The OS process this cost lives in, when there is one. Present so a
|
|
13602
|
+
* consumer can (a) tell two generations of the same unit apart across a
|
|
13603
|
+
* restart, and (b) subtract claimed processes from the node's process
|
|
13604
|
+
* snapshot to see what NOBODY claimed. Absent for an entry that owns no
|
|
13605
|
+
* process of its own.
|
|
13606
|
+
*/
|
|
13607
|
+
pid: number().int().positive().optional(),
|
|
13608
|
+
/**
|
|
13609
|
+
* When this generation started. The pid's incarnation marker: a consumer
|
|
13610
|
+
* differencing {@link LoadContributionSchema.shape.cpuSeconds} must drop the
|
|
13611
|
+
* window when this changes, because the counter restarted from zero in a new
|
|
13612
|
+
* process.
|
|
13613
|
+
*/
|
|
13614
|
+
startedAtMs: number().optional(),
|
|
13615
|
+
/**
|
|
13616
|
+
* CUMULATIVE CPU seconds this unit has consumed since it started — user +
|
|
13617
|
+
* system, read from the child's own `/proc/<pid>/stat` at the moment the
|
|
13618
|
+
* contribution is asked for.
|
|
13619
|
+
*
|
|
13620
|
+
* Cumulative and not a rate on purpose: a rate needs a window, a window
|
|
13621
|
+
* needs a sampler, and a new per-node sampler is the defect half of
|
|
13622
|
+
* `docs/architecture/load-ledger.md` documents. A counter can be differenced
|
|
13623
|
+
* by whoever already keeps a history; a rate cannot be un-averaged.
|
|
13624
|
+
*
|
|
13625
|
+
* Absent — never zero — on a node with no `/proc`, on a read failure, and on
|
|
13626
|
+
* an entry with no process.
|
|
13627
|
+
*/
|
|
13628
|
+
cpuSeconds: number().optional(),
|
|
13629
|
+
/** Resident bytes of this unit's process, same source and same rules. */
|
|
13630
|
+
rssBytes: number().optional()
|
|
13631
|
+
});
|
|
13632
|
+
method(_void(), array(LoadContributionSchema).readonly());
|
|
13463
13633
|
/**
|
|
13464
13634
|
* `log-channels` — the capability an addon DECLARES its diagnostic channels
|
|
13465
13635
|
* through. It stores nothing.
|
|
@@ -13536,176 +13706,6 @@ method(LogEntrySchema, _void(), { kind: "mutation" }), method(object({
|
|
|
13536
13706
|
tags: record(string(), string()).optional()
|
|
13537
13707
|
}), array(LogEntrySchema).readonly());
|
|
13538
13708
|
/**
|
|
13539
|
-
* `failure-contribution` — the capability an addon reports its OWN losses
|
|
13540
|
-
* through, per camera, with the denominator attached. It stores nothing.
|
|
13541
|
-
*
|
|
13542
|
-
* ## The twin of `load-contribution`, and why it is a twin and not a field
|
|
13543
|
-
*
|
|
13544
|
-
* `load-contribution` answers *what did this camera COST*. This answers *what
|
|
13545
|
-
* did this camera LOSE*. The reporting discipline is identical and deliberately
|
|
13546
|
-
* copied: the contributor reports what it already knows, hub-main adds only
|
|
13547
|
-
* `addonId`, nothing needs global knowledge, and there is no central list for
|
|
13548
|
-
* somebody to forget to edit.
|
|
13549
|
-
*
|
|
13550
|
-
* They are not merged, because their invariants are opposites:
|
|
13551
|
-
*
|
|
13552
|
-
* - a `load-contribution` measurement is **absent, never zero** — a zero would
|
|
13553
|
-
* claim a camera cost nothing, which is a measurement nobody made;
|
|
13554
|
-
* - a `failure-contribution` zero is the **most valuable value on the
|
|
13555
|
-
* surface** — `attempts: 400, succeeded: 400` is the proof a fix landed,
|
|
13556
|
-
* and it is exactly what an absent entry cannot say.
|
|
13557
|
-
*
|
|
13558
|
-
* Putting a loss counter on a cost entry would also break the reconciliation
|
|
13559
|
-
* that gives `load-contribution` its point: contributions are subtracted from
|
|
13560
|
-
* `metrics.node-processes-snapshot` to find processes nobody claims. A failure
|
|
13561
|
-
* has no process.
|
|
13562
|
-
*
|
|
13563
|
-
* ## Why not a log line, since the counters already exist
|
|
13564
|
-
*
|
|
13565
|
-
* Several of these paths already counted themselves — `CaptureScheduler`'s
|
|
13566
|
-
* per-device window, `KeyFrameCaptureLog`, `bumpCropMetric`. Every one of them
|
|
13567
|
-
* ends in a log line, and a log line is the thing the operator asked to stop
|
|
13568
|
-
* needing: *"possiamo armare questi errori intanto? Così al prossimo giro
|
|
13569
|
-
* ricontrolliamo tutti questi punti"*. Reading them meant grepping Loki and
|
|
13570
|
-
* hand-correlating timestamps, which is how a 22% thumbnail gap and a 3-hour
|
|
13571
|
-
* media blackout were both diagnosed. The counters stay; this is where they can
|
|
13572
|
-
* be READ.
|
|
13573
|
-
*
|
|
13574
|
-
* ## The rate is served with its denominator or not at all
|
|
13575
|
-
*
|
|
13576
|
-
* Every entry carries `attempts` and `succeeded`. A miss count alone is
|
|
13577
|
-
* unreadable: on 2026-08-28 the enrichment-crop miss count read as "35x worse
|
|
13578
|
-
* than yesterday" and was **flat across twelve hours** once divided by the
|
|
13579
|
-
* successes on the same path. A surface that publishes only the numerator
|
|
13580
|
-
* reproduces that mistake on every read.
|
|
13581
|
-
*
|
|
13582
|
-
* ## Shape
|
|
13583
|
-
*
|
|
13584
|
-
* Copied from `load-contribution.cap.ts` (`mode: 'collection'`,
|
|
13585
|
-
* `internal: true`, `mount: { kind: 'skip' }`): no tRPC route of its own and no
|
|
13586
|
-
* generated hooks, while `addons.listCapabilityProviders` still enumerates it
|
|
13587
|
-
* and the hub's `CapabilityRegistry` still holds an RPC proxy per provider — so
|
|
13588
|
-
* a forked runner's entries reach hub-main over transport that already exists.
|
|
13589
|
-
* No new UDS message, no second registry (D3). The operator reads the assembled
|
|
13590
|
-
* result through `system.getFailureContributions`.
|
|
13591
|
-
*/
|
|
13592
|
-
var FailureReasonCountSchema = object({
|
|
13593
|
-
/**
|
|
13594
|
-
* Why the attempt did not land, in the contributor's own vocabulary —
|
|
13595
|
-
* `worker-lease-gone`, `queue-overflow`, `timeout`, `empty-read`. The same
|
|
13596
|
-
* strings that already appear in this repo's logs and, where one exists, the
|
|
13597
|
-
* same string the per-track `previewMissReason` records (D276): a second
|
|
13598
|
-
* vocabulary for the same loss would make the row and the counter
|
|
13599
|
-
* un-joinable.
|
|
13600
|
-
*/
|
|
13601
|
-
reason: string(),
|
|
13602
|
-
count: number().int().nonnegative()
|
|
13603
|
-
});
|
|
13604
|
-
var FailureContributionSchema = object({
|
|
13605
|
-
/**
|
|
13606
|
-
* The failing path — `enrichment-crop`, `inference`, `plate-ocr`,
|
|
13607
|
-
* `person-over-vehicle`. Free text, for the reason `load-contribution` keeps
|
|
13608
|
-
* `unit` free: the families are owned by different addons and a shared enum
|
|
13609
|
-
* is a central list that rots invisibly.
|
|
13610
|
-
*/
|
|
13611
|
-
family: string(),
|
|
13612
|
-
/**
|
|
13613
|
-
* The NUMERIC device id — the same value every log line carries as
|
|
13614
|
-
* `tags.deviceId`. Never nullable and never absent: a contributor that
|
|
13615
|
-
* cannot name the camera must not emit the entry, because a fleet total
|
|
13616
|
-
* cannot answer the only question anybody asks of this surface.
|
|
13617
|
-
*/
|
|
13618
|
-
deviceId: number().int().positive(),
|
|
13619
|
-
/**
|
|
13620
|
-
* A second dimension inside the family: the model / step id for an inference
|
|
13621
|
-
* timeout, so "which camera AND which model" is one read. Absent when the
|
|
13622
|
-
* family has a single variant.
|
|
13623
|
-
*/
|
|
13624
|
-
variant: string().optional(),
|
|
13625
|
-
/**
|
|
13626
|
-
* Epoch ms this counter started — the INCARNATION MARKER. A consumer
|
|
13627
|
-
* differencing two reads must drop the interval when it changes, because the
|
|
13628
|
-
* counter restarted from zero in a respawned runner. Same discipline as
|
|
13629
|
-
* `LoadContribution.startedAtMs`.
|
|
13630
|
-
*/
|
|
13631
|
-
sinceMs: number(),
|
|
13632
|
-
/** Epoch ms it was read. `atMs - sinceMs` is the interval this covers. */
|
|
13633
|
-
atMs: number(),
|
|
13634
|
-
/**
|
|
13635
|
-
* THE DENOMINATOR — every attempt on this path for this camera in the
|
|
13636
|
-
* window. A failure count published without it is the mistake this schema
|
|
13637
|
-
* exists to make impossible.
|
|
13638
|
-
*/
|
|
13639
|
-
attempts: number().int().nonnegative(),
|
|
13640
|
-
/** Attempts that landed. `attempts - succeeded` is the loss. */
|
|
13641
|
-
succeeded: number().int().nonnegative(),
|
|
13642
|
-
/** The loss, partitioned. Sums to `attempts - succeeded`. */
|
|
13643
|
-
reasons: array(FailureReasonCountSchema).readonly()
|
|
13644
|
-
});
|
|
13645
|
-
method(_void(), array(FailureContributionSchema).readonly());
|
|
13646
|
-
var LoadContributionSchema = object({
|
|
13647
|
-
role: _enum([
|
|
13648
|
-
"decode",
|
|
13649
|
-
"transcode",
|
|
13650
|
-
"recording",
|
|
13651
|
-
"streaming",
|
|
13652
|
-
"detection"
|
|
13653
|
-
]),
|
|
13654
|
-
/**
|
|
13655
|
-
* The NUMERIC device id — the same value every log line carries as
|
|
13656
|
-
* `tags.deviceId`. `null` means this cost genuinely belongs to no single
|
|
13657
|
-
* camera (a shared pool), NOT that the contributor forgot to look it up: a
|
|
13658
|
-
* contributor that cannot name its camera must not emit the entry at all,
|
|
13659
|
-
* because an unnamed per-camera entry is indistinguishable from a shared one
|
|
13660
|
-
* and would quietly turn one camera's cost into everybody's.
|
|
13661
|
-
*/
|
|
13662
|
-
deviceId: number().int().positive().nullable(),
|
|
13663
|
-
attribution: _enum([
|
|
13664
|
-
"measured",
|
|
13665
|
-
"accounted",
|
|
13666
|
-
"unattributable"
|
|
13667
|
-
]),
|
|
13668
|
-
/**
|
|
13669
|
-
* What ONE entry is, in the contributor's own words — `615/high`,
|
|
13670
|
-
* `617/native`, `cuda:0 shared pool`. Free text because the unit differs per
|
|
13671
|
-
* family and inventing a common one would lose the only information that
|
|
13672
|
-
* makes two entries for the same camera distinguishable.
|
|
13673
|
-
*/
|
|
13674
|
-
unit: string(),
|
|
13675
|
-
/**
|
|
13676
|
-
* The OS process this cost lives in, when there is one. Present so a
|
|
13677
|
-
* consumer can (a) tell two generations of the same unit apart across a
|
|
13678
|
-
* restart, and (b) subtract claimed processes from the node's process
|
|
13679
|
-
* snapshot to see what NOBODY claimed. Absent for an entry that owns no
|
|
13680
|
-
* process of its own.
|
|
13681
|
-
*/
|
|
13682
|
-
pid: number().int().positive().optional(),
|
|
13683
|
-
/**
|
|
13684
|
-
* When this generation started. The pid's incarnation marker: a consumer
|
|
13685
|
-
* differencing {@link LoadContributionSchema.shape.cpuSeconds} must drop the
|
|
13686
|
-
* window when this changes, because the counter restarted from zero in a new
|
|
13687
|
-
* process.
|
|
13688
|
-
*/
|
|
13689
|
-
startedAtMs: number().optional(),
|
|
13690
|
-
/**
|
|
13691
|
-
* CUMULATIVE CPU seconds this unit has consumed since it started — user +
|
|
13692
|
-
* system, read from the child's own `/proc/<pid>/stat` at the moment the
|
|
13693
|
-
* contribution is asked for.
|
|
13694
|
-
*
|
|
13695
|
-
* Cumulative and not a rate on purpose: a rate needs a window, a window
|
|
13696
|
-
* needs a sampler, and a new per-node sampler is the defect half of
|
|
13697
|
-
* `docs/architecture/load-ledger.md` documents. A counter can be differenced
|
|
13698
|
-
* by whoever already keeps a history; a rate cannot be un-averaged.
|
|
13699
|
-
*
|
|
13700
|
-
* Absent — never zero — on a node with no `/proc`, on a read failure, and on
|
|
13701
|
-
* an entry with no process.
|
|
13702
|
-
*/
|
|
13703
|
-
cpuSeconds: number().optional(),
|
|
13704
|
-
/** Resident bytes of this unit's process, same source and same rules. */
|
|
13705
|
-
rssBytes: number().optional()
|
|
13706
|
-
});
|
|
13707
|
-
method(_void(), array(LoadContributionSchema).readonly());
|
|
13708
|
-
/**
|
|
13709
13709
|
* `login-method` — collection cap through which auth addons contribute
|
|
13710
13710
|
* their pre-auth login surfaces to the login page. This is the SINGLE,
|
|
13711
13711
|
* generic mechanism that supersedes the dead `auth.listProviders` reader:
|
|
@@ -18365,12 +18365,53 @@ var MediaFileKindEnum = _enum([
|
|
|
18365
18365
|
"keyFrameSmall",
|
|
18366
18366
|
"thumbnailSmall"
|
|
18367
18367
|
]);
|
|
18368
|
+
/**
|
|
18369
|
+
* One media row ON THE WIRE: what it is, how big it is, and WHERE ITS BYTES
|
|
18370
|
+
* ARE — never the bytes themselves.
|
|
18371
|
+
*
|
|
18372
|
+
* ## Why `url` and not `base64`
|
|
18373
|
+
*
|
|
18374
|
+
* Measured on the live hub 2026-08-30: `getTrackMedia {trackId, deviceId}`
|
|
18375
|
+
* with no `kinds` returned 6 rows / **3 597 219 B**, of which `keyFrame` alone
|
|
18376
|
+
* was **2 824 077 B** — one full-resolution frame, base64, so +33 % on the
|
|
18377
|
+
* wire. Forty events is ~144 MB. Every byte of it was read off disk,
|
|
18378
|
+
* base64-encoded, held whole in a unary tRPC envelope, and materialised in
|
|
18379
|
+
* hub-main's heap on the way past — for an `<img>` that would have cached it.
|
|
18380
|
+
*
|
|
18381
|
+
* `url` points at the `event-media` data plane
|
|
18382
|
+
* (`/addon/<addonId>/event-media/<storedKey>`), which serves the same blob
|
|
18383
|
+
* with an ETag and `Cache-Control: immutable`, honours conditional GETs, can
|
|
18384
|
+
* render a `?variant=thumb`, and streams. The hub gate in front of it requires
|
|
18385
|
+
* a bearer or the session cookie (`access: 'authenticated'`), so the bytes are
|
|
18386
|
+
* no less protected than they were inside a `view`-level cap response — see
|
|
18387
|
+
* `data-plane-access.ts` for the rule and the one gap it does not close
|
|
18388
|
+
* (per-device scoping).
|
|
18389
|
+
*
|
|
18390
|
+
* The URL is built from the row's **stored** key, which is not always its
|
|
18391
|
+
* published `kind`: a track's face/plate crop is stored as `crop` under
|
|
18392
|
+
* `('face'|'plate', '<prefix>-<trackId>')` and published as
|
|
18393
|
+
* `faceCrop`/`plateCrop`. `MediaStore.getByKey` knows only the stored key.
|
|
18394
|
+
*
|
|
18395
|
+
* ## `base64` is TRANSITIONAL and is going away
|
|
18396
|
+
*
|
|
18397
|
+
* It is still populated for one reason: the deployed viewer's track-detail
|
|
18398
|
+
* HERO tile reads it (`use-track-media-entry.ts` → `parseMediaFiles`, which
|
|
18399
|
+
* REQUIRES the field), and a row without it parses as a FAILED read — the red
|
|
18400
|
+
* triangle — not as absence. Removing the field before that viewer ships is an
|
|
18401
|
+
* outage, not a cleanup. Once the viewer takes its hero bytes from `url`,
|
|
18402
|
+
* delete this line and the `withBytes` pass-through in
|
|
18403
|
+
* `analytics-query-facade.ts`; nothing else reads it.
|
|
18404
|
+
*/
|
|
18368
18405
|
var MediaFileSchema = object({
|
|
18369
18406
|
key: string(),
|
|
18370
18407
|
kind: MediaFileKindEnum,
|
|
18371
|
-
base64: string(),
|
|
18372
18408
|
sizeBytes: number(),
|
|
18373
18409
|
timestamp: number()
|
|
18410
|
+
}).extend({
|
|
18411
|
+
/** `/addon/<addonId>/event-media/<encoded stored key>`. Always present. */
|
|
18412
|
+
url: string(),
|
|
18413
|
+
/** @deprecated Transitional — see the schema docblock. Use {@link url}. */
|
|
18414
|
+
base64: string()
|
|
18374
18415
|
});
|
|
18375
18416
|
/**
|
|
18376
18417
|
* One media row WITHOUT its bytes.
|
|
@@ -18382,7 +18423,9 @@ var MediaFileSchema = object({
|
|
|
18382
18423
|
* blocks the whole view.
|
|
18383
18424
|
*
|
|
18384
18425
|
* `sizeBytes` is carried because it is what lets a client decide between the
|
|
18385
|
-
* stored blob and a `?variant=thumb` rendering without fetching either
|
|
18426
|
+
* stored blob and a `?variant=thumb` rendering without fetching either, and
|
|
18427
|
+
* `url` because a client that had to build the plane path itself is a second
|
|
18428
|
+
* copy of a route — the embed, the viewer and the admin UI each grew one.
|
|
18386
18429
|
*/
|
|
18387
18430
|
var MediaFileInfoSchema = MediaFileSchema.omit({ base64: true });
|
|
18388
18431
|
/**
|
|
@@ -19071,6 +19114,9 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19071
19114
|
}), array(MediaFileSchema).readonly()), method(object({
|
|
19072
19115
|
trackId: string(),
|
|
19073
19116
|
deviceId: number()
|
|
19117
|
+
}), array(MediaFileInfoSchema).readonly()), method(object({
|
|
19118
|
+
eventId: string(),
|
|
19119
|
+
deviceId: number()
|
|
19074
19120
|
}), array(MediaFileInfoSchema).readonly()), method(SearchObjectEventsInput, array(ScoredObjectEventSchema).readonly()), method(object({}), WipeObjectEmbeddingsResultSchema, {
|
|
19075
19121
|
kind: "mutation",
|
|
19076
19122
|
auth: "admin"
|
|
@@ -23344,10 +23390,24 @@ var FaceClusterSchema = object({
|
|
|
23344
23390
|
size: number().int(),
|
|
23345
23391
|
cohesion: number()
|
|
23346
23392
|
});
|
|
23393
|
+
/**
|
|
23394
|
+
* One gallery media row: what the crop is, how big it is, and WHERE its bytes
|
|
23395
|
+
* are — never the bytes.
|
|
23396
|
+
*
|
|
23397
|
+
* `base64` was deleted here rather than deprecated. `MediaFile.base64` (the
|
|
23398
|
+
* track/event contract) is still populated because a deployed viewer requires
|
|
23399
|
+
* the field to parse a row at all; this method has no such reader. Its ONE
|
|
23400
|
+
* caller is the admin UI's detail modal, which was building
|
|
23401
|
+
* `data:image/jpeg;base64,…` from a row whose `key` sat right beside it, in a
|
|
23402
|
+
* dialog already rendering its key FRAME from the `event-media` plane.
|
|
23403
|
+
*
|
|
23404
|
+
* `url` is `/addon/<addonId>/event-media/<encoded key>`. The plane resolves a
|
|
23405
|
+
* media key directly, so this needed no new plane and no new access decision.
|
|
23406
|
+
*/
|
|
23347
23407
|
var MediaFileLiteSchema$1 = object({
|
|
23348
23408
|
key: string(),
|
|
23349
23409
|
kind: string(),
|
|
23350
|
-
|
|
23410
|
+
url: string(),
|
|
23351
23411
|
sizeBytes: number(),
|
|
23352
23412
|
timestamp: number()
|
|
23353
23413
|
});
|
|
@@ -25599,10 +25659,24 @@ var PlateInfoSchema = object({
|
|
|
25599
25659
|
*/
|
|
25600
25660
|
cropUrl: string().optional()
|
|
25601
25661
|
});
|
|
25662
|
+
/**
|
|
25663
|
+
* One gallery media row: what the crop is, how big it is, and WHERE its bytes
|
|
25664
|
+
* are — never the bytes.
|
|
25665
|
+
*
|
|
25666
|
+
* `base64` was deleted here rather than deprecated. `MediaFile.base64` (the
|
|
25667
|
+
* track/event contract) is still populated because a deployed viewer requires
|
|
25668
|
+
* the field to parse a row at all; this method has no such reader. Its ONE
|
|
25669
|
+
* caller is the admin UI's detail modal, which was building
|
|
25670
|
+
* `data:image/jpeg;base64,…` from a row whose `key` sat right beside it, in a
|
|
25671
|
+
* dialog already rendering its key FRAME from the `event-media` plane.
|
|
25672
|
+
*
|
|
25673
|
+
* `url` is `/addon/<addonId>/event-media/<encoded key>`. The plane resolves a
|
|
25674
|
+
* media key directly, so this needed no new plane and no new access decision.
|
|
25675
|
+
*/
|
|
25602
25676
|
var MediaFileLiteSchema = object({
|
|
25603
25677
|
key: string(),
|
|
25604
25678
|
kind: string(),
|
|
25605
|
-
|
|
25679
|
+
url: string(),
|
|
25606
25680
|
sizeBytes: number(),
|
|
25607
25681
|
timestamp: number()
|
|
25608
25682
|
});
|
|
@@ -31615,6 +31689,12 @@ Object.freeze({
|
|
|
31615
31689
|
addonId: null,
|
|
31616
31690
|
access: "view"
|
|
31617
31691
|
},
|
|
31692
|
+
"pipelineAnalytics.listEventMedia": {
|
|
31693
|
+
capName: "pipeline-analytics",
|
|
31694
|
+
capScope: "device",
|
|
31695
|
+
addonId: null,
|
|
31696
|
+
access: "view"
|
|
31697
|
+
},
|
|
31618
31698
|
"pipelineAnalytics.listGroups": {
|
|
31619
31699
|
capName: "pipeline-analytics",
|
|
31620
31700
|
capScope: "device",
|
|
@@ -35238,6 +35318,11 @@ Object.freeze({
|
|
|
35238
35318
|
form: "array",
|
|
35239
35319
|
optional: false
|
|
35240
35320
|
}],
|
|
35321
|
+
"pipelineAnalytics.listEventMedia": [{
|
|
35322
|
+
name: "deviceId",
|
|
35323
|
+
form: "single",
|
|
35324
|
+
optional: false
|
|
35325
|
+
}],
|
|
35241
35326
|
"pipelineAnalytics.listGroups": [{
|
|
35242
35327
|
name: "deviceIds",
|
|
35243
35328
|
form: "array",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-smtp-nodemailer",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.46",
|
|
4
4
|
"description": "SMTP email provider addon for CamStack — wraps `nodemailer` and registers a `smtp-provider` cap collection entry. Used by magic-link login + notifier addons.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|