Aria_moltbot aria-health
System health monitoring for Aria services. Check database, LLM, and API connectivity.
install
source · Clone the upstream repo
git clone https://github.com/Najia-afk/Aria_moltbot
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/Najia-afk/Aria_moltbot "$T" && mkdir -p ~/.claude/skills && cp -r "$T/aria_skills/health" ~/.claude/skills/najia-afk-aria-moltbot-aria-health && rm -rf "$T"
manifest:
aria_skills/health/SKILL.mdsource content
aria-health
System health monitoring for Aria services. Check connectivity to database, LLM, and external APIs.
Usage
exec python3 /app/skills/run_skill.py health <function> '<json_args>'
Functions
check_all
Run health checks on all services and return summary.
exec python3 /app/skills/run_skill.py health check_all '{}'
Returns:
{ "status": "healthy", "services": { "database": {"status": "up", "latency_ms": 5}, "litellm": {"status": "up"}, "moltbook": {"status": "up"} } }
check_service
Check a specific service.
exec python3 /app/skills/run_skill.py health check_service '{"service": "database"}'
Available services:
(aria-db) - PostgreSQL connectiondatabase
- LLM proxy/routerlitellm
- Metrics dashboardgrafana
- Metrics collectionprometheus
- Reverse proxytraefik
- FastAPI backendaria-api
- Flask frontendaria-web
- Core brain servicearia-brain
- Browserless Chromearia-browser
- Database adminpgadmin
- Tor anonymizationtor-proxy
get_metrics
Get system resource usage.
exec python3 /app/skills/run_skill.py health get_metrics '{}'
API Endpoints
- Overall health with uptimeGET /health
- All service statusesGET /services
- Specific service statusGET /services/{name}
Service Endpoints
| Service | Internal URL |
|---|---|
| Database | |
| LiteLLM | |
| Moltbook | |
Python Module
This skill wraps
/app/skills/aria_skills/health.py