KB-3564
S167G-VERIFY Production URL Evidence
3 min read Revision 1
reports167gverifyproductiondieu312026-03-26
S167G-VERIFY — Production URL Evidence
Date: 2026-03-26 | Agent: Claude CLI (claude-go) Mode: VERIFY ONLY — no code, no PRs Ref: S167G PR #635 (merged 2026-03-26T06:51:03Z)
1. Health Check (production URL)
curl -s https://vps.incomexsaigoncorp.vn/api/health
{
"status": "healthy",
"version": "0.1.0",
"services": { "qdrant": "ok", "postgres": "ok", "openai": "ok" },
"data_integrity": {
"document_count": 586,
"vector_point_count": 861,
"ratio": 1.47,
"sync_status": "ok"
}
}
2. System Issues Totals (production URL)
curl -s https://vps.incomexsaigoncorp.vn/api/registry/system-issues | jq '.totals'
{
"all": 6,
"critical": 3,
"warning": 3,
"info": 0,
"group_count": 2
}
3. Smoke Check (key pages HTTP 200)
| URL | Status |
|---|---|
| https://vps.incomexsaigoncorp.vn/knowledge/registries | 200 |
| https://vps.incomexsaigoncorp.vn/knowledge/registries/health | 200 |
| https://vps.incomexsaigoncorp.vn/knowledge/registries/species | 200 |
4. Cron Verify
$ crontab -l | grep -E 'integrity|WATCHDOG'
0 */6 * * * /opt/incomex/deploys/web-test/scripts/integrity/cron-integrity.sh >> /opt/incomex/logs/integrity/cron.log 2>&1
# WATCHDOG Monitor — hourly
0 * * * * /opt/incomex/deploys/web-test/scripts/integrity/watchdog-monitor.sh >> /opt/incomex/logs/integrity/watchdog.log 2>&1
Scanner: every 6h. Watchdog: hourly.
5. Watchdog Fresh? (PG direct query)
SELECT id, title, status, last_seen_at, occurrence_count
FROM system_issues WHERE issue_class='watchdog_fault'
ORDER BY last_seen_at DESC LIMIT 3;
id | title | status | last_seen_at | occurrence_count
------+------------------------------------------------------+--------+----------------------------+------------------
2157 | [CTR-WATCHDOG] WATCHDOG — runner song | open | 2026-03-26 06:59:03.073+00 | 4
758 | [CTR-WATCHDOG] Check luon FAIL — runner da chet | open | 2026-03-26 05:48:48.028+00 | 6
Watchdog #2157: last_seen 06:59 UTC (fresh, < 1h ago). Runner alive.
Verdict
| Check | Result |
|---|---|
| Health endpoint | healthy, all services ok |
| System issues | 6 open (3 critical, 3 warning) |
| Key pages | All 200 |
| Scanner cron | 0 */6 * * * (every 6h) |
| Watchdog cron | 0 * * * * (hourly) |
| Watchdog fresh | last_seen 06:59 UTC, occurrence_count=4 |
All evidence from production URLs. S167G verified.
Evidence per section 0-AF: production URL required.