Critical alerts open
148

BSC Listener

USDT BEP20 ingest health · WSS uptime · lag vs chain head
No BSC metrics pushed yet. Wire your listener with POST /api/metrics sending keys with prefix bsc. — see snippet below.
📥 Listener push snippet
# Run this in your BSC listener every 30-60s

curl -X POST https://monitoring.3-techs.com/api/metrics \
  -H "Authorization: Bearer $DASHBOARD_AUTH_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "project": "gaming",
    "metrics": [
      { "key": "bsc.last_block",      "value": 47213889, "unit": "blocks" },
      { "key": "bsc.lag_s",           "value": 0.8,      "unit": "s" },
      { "key": "bsc.wss_uptime_s",    "value": 8040,     "unit": "s" },
      { "key": "bsc.tx_per_min",      "value": 12 },
      { "key": "bsc.fallback_poll_active", "text": "idle" }
    ]
  }'