monitoring: QR form + qrencode/zbarimg roundtrip (www.qr)

Harvest taler:// and payto:// (plus app-store links) from landings
and mint JSON; validate shape; re-encode PNG and decode with zbarimg.
This commit is contained in:
Hernâni Marques 2026-07-17 18:43:04 +02:00
parent 026f3ac04c
commit f7856525f3
No known key found for this signature in database
5 changed files with 529 additions and 2 deletions

View file

@ -59,6 +59,8 @@ Env (same meaning):
NO_COLOR=1 / CLICOLOR=0 disable green/yellow/red tags (default: coloured)
SKIP_SSH=1 NO_COLOR=1
PERF_WARN_MS PERF_FAIL_MS (urls latency; default 8000 / 20000)
QR_CHECK=0 skip QR form + qrencode/zbarimg (urls phase)
QR_ECC=M qrencode ECC level (default M)
KOOPA_SSH KOOPA_SSH_FALLBACKS (default koopa → koopa-external)
METRICS_LOAD=0 skip host/container RAM/CPU probes (e2e/ladder/inside)
EOF
@ -224,7 +226,7 @@ if [ "${PROGRESS_TOTAL:-0}" = "0" ] || [ -z "${PROGRESS_TOTAL:-}" ]; then
_pt=0
for p in "${PHASES[@]}"; do
case "$p" in
urls) _pt=$((_pt + 55)) ;;
urls) _pt=$((_pt + 70)) ;;
inside) _pt=$((_pt + 25)) ;;
versions) _pt=$((_pt + 20)) ;;
sanity) _pt=$((_pt + 30)) ;;