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.md
source 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:

  • database
    (aria-db) - PostgreSQL connection
  • litellm
    - LLM proxy/router
  • grafana
    - Metrics dashboard
  • prometheus
    - Metrics collection
  • traefik
    - Reverse proxy
  • aria-api
    - FastAPI backend
  • aria-web
    - Flask frontend
  • aria-brain
    - Core brain service
  • aria-browser
    - Browserless Chrome
  • pgadmin
    - Database admin
  • tor-proxy
    - Tor anonymization

get_metrics

Get system resource usage.

exec python3 /app/skills/run_skill.py health get_metrics '{}'

API Endpoints

  • GET /health
    - Overall health with uptime
  • GET /services
    - All service statuses
  • GET /services/{name}
    - Specific service status

Service Endpoints

ServiceInternal URL
Database
postgres://aria_warehouse:5432
LiteLLM
http://litellm:4000
Moltbook
https://www.moltbook.com/api/v1

Python Module

This skill wraps

/app/skills/aria_skills/health.py