From e12e5e682cc5f680de893bd9eebb3efef393296c Mon Sep 17 00:00:00 2001 From: M1 Date: Mon, 16 Mar 2026 14:49:59 +0400 Subject: [PATCH] copy: hero example uses $.db.status to show JSON inspection, shorter comment --- apps/web/src/dashboard/landing.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/dashboard/landing.html b/apps/web/src/dashboard/landing.html index 1a6dcd5..9d628d5 100644 --- a/apps/web/src/dashboard/landing.html +++ b/apps/web/src/dashboard/landing.html @@ -188,12 +188,12 @@
{
   "$and": [
     { "status": { "$lt": 400 } },
-    { "$responseTime": { "$lt": 200 } },
+    { "$json": { "$.db.status": { "$eq": "ok" } } },
     { "$certExpiry": { "$gt": 14 } }
   ]
 }
- // status < 400 AND $responseTime < 200ms AND $certExpiry > 14 days + // status < 400 AND res.time < 200ms AND $certExpiry > 14 days