@forgecart/flight-observability 0.202608300703.0 → 0.202609190800.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.
- package/dist/rules/fc-recording.yml +33 -0
- package/package.json +1 -1
|
@@ -224,6 +224,12 @@ groups:
|
|
|
224
224
|
# F4: the REAL effective prefetch — the HOL-utilisation divisor.
|
|
225
225
|
- record: fc:mq:prefetch_effective
|
|
226
226
|
expr: max by (service) (fc_mq_prefetch_effective)
|
|
227
|
+
# #1172: AMQP liveness per service — min, so ANY disconnected replica
|
|
228
|
+
# drags the series to 0 (the loud direction). The cause line under an
|
|
229
|
+
# outbox mute: eligible depth climbing at 0 = genuine broker mute;
|
|
230
|
+
# climbing at 1 = a claim/delivery defect.
|
|
231
|
+
- record: fc:mq:connected
|
|
232
|
+
expr: min by (service) (fc_mq_connected)
|
|
227
233
|
# The register-trigger meter (debt #3 ≥1k, debt #2/Kafka ≥5-10k): the
|
|
228
234
|
# 1k/5k reference lines live on the dashboard panel.
|
|
229
235
|
- record: fc:ingest:events_per_second
|
|
@@ -240,6 +246,16 @@ groups:
|
|
|
240
246
|
expr: max by (service, target) (fc_grpc_ready)
|
|
241
247
|
- record: fc:grpc:inflight
|
|
242
248
|
expr: sum by (service, target) (fc_grpc_inflight)
|
|
249
|
+
# Ads gateway closure (#933, register #10): staleness/lag/depth gauges + the
|
|
250
|
+
# re-auth counter rate — bounded provider label by construction.
|
|
251
|
+
- record: fc:ads:spend_sync_staleness_seconds
|
|
252
|
+
expr: max by (service, provider) (fc_ads_spend_sync_staleness_seconds)
|
|
253
|
+
- record: fc:ads:audience_watermark_lag_seconds
|
|
254
|
+
expr: max by (service, provider) (fc_ads_audience_watermark_lag_seconds)
|
|
255
|
+
- record: fc:ads:conversion_dlq_depth
|
|
256
|
+
expr: max by (service) (fc_ads_conversion_dlq_depth)
|
|
257
|
+
- record: fc:ads:token_refresh_failure_rate
|
|
258
|
+
expr: sum by (provider, reason) (rate(fc_ads_token_refresh_failures_total[5m]))
|
|
243
259
|
- record: fc:grpc:transient_failure_rate
|
|
244
260
|
expr: sum by (service, target) (rate(fc_grpc_transient_failure_seconds_total[5m]))
|
|
245
261
|
# Model-provider limit rejections (run 32571110796's invisible class):
|
|
@@ -388,6 +404,23 @@ groups:
|
|
|
388
404
|
expr: max(pg_outbox_oldest_unsent_seconds)
|
|
389
405
|
- record: fc:outbox:backlog
|
|
390
406
|
expr: max(pg_outbox_backlog)
|
|
407
|
+
# #1172: the relay's own lane-scoped census — the ELIGIBILITY-AWARE
|
|
408
|
+
# truth. The pg_outbox_* pair above is eligibility-blind by construction
|
|
409
|
+
# (it counts future-dated re-arm slots and foreign-prefix CI orphans,
|
|
410
|
+
# and ages rows from birth — the 2026-08-29 false "hard-mute"): keep it
|
|
411
|
+
# for exporter parity, but alert predicates belong on THESE series.
|
|
412
|
+
- record: fc:outbox:eligible_depth
|
|
413
|
+
expr: max by (service) (fc_outbox_eligible_depth)
|
|
414
|
+
- record: fc:outbox:scheduled_depth
|
|
415
|
+
expr: max by (service) (fc_outbox_scheduled_depth)
|
|
416
|
+
- record: fc:outbox:retrying_depth
|
|
417
|
+
expr: max by (service) (fc_outbox_retrying_depth)
|
|
418
|
+
- record: fc:outbox:dead_depth
|
|
419
|
+
expr: max by (service) (fc_outbox_dead_depth)
|
|
420
|
+
- record: fc:outbox:oldest_eligible_seconds
|
|
421
|
+
expr: max by (service) (fc_outbox_oldest_eligible_seconds)
|
|
422
|
+
- record: fc:outbox:dead_lettered_rate
|
|
423
|
+
expr: sum by (service) (rate(fc_outbox_dead_lettered_total[5m]))
|
|
391
424
|
- name: fc-marketing
|
|
392
425
|
interval: 15s
|
|
393
426
|
rules:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forgecart/flight-observability",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.202609190800.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Flight Deck dashboards, fc: recording/alert rules, and the pg-custom-queries contract — the version-pinned sync artifact between shop-beta and forgecart/cloud (launch#46 P4).",
|
|
6
6
|
"files": [
|