geonix 1.35.1 → 1.35.2
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/package.json +1 -1
- package/src/debug.html +6 -4
package/package.json
CHANGED
package/src/debug.html
CHANGED
|
@@ -476,11 +476,13 @@
|
|
|
476
476
|
<div class="card"><div class="label">Endpoints</div><div class="value">${endpoints.length}</div></div>
|
|
477
477
|
<div class="card"><div class="label">Empty .a</div><div class="value" style="color:${emptyAddrCount > 0 ? "var(--amber)" : "var(--green)"}">${emptyAddrCount}</div></div>
|
|
478
478
|
</div>
|
|
479
|
-
<h3>Gateway Stats
|
|
479
|
+
<h3>Gateway Stats <a class="link" href="#gateway" style="font-size: 12px; font-weight: 400; text-transform: none; letter-spacing: 0; margin-left: 8px;">full breakdown →</a></h3>
|
|
480
480
|
<div class="cards">
|
|
481
|
-
${Object.entries(stats)
|
|
482
|
-
|
|
483
|
-
|
|
481
|
+
${Object.entries(stats)
|
|
482
|
+
.filter(([k, v]) => (typeof v === "number" || typeof v === "string" || typeof v === "boolean") && k !== "startedAt")
|
|
483
|
+
.map(([k, v]) => `
|
|
484
|
+
<div class="card"><div class="label">${esc(k)}</div><div class="value">${esc(v)}</div></div>
|
|
485
|
+
`).join("")}
|
|
484
486
|
</div>
|
|
485
487
|
<h3>Services</h3>
|
|
486
488
|
<div id="overview-svc-wrap"></div>
|