render-monitor

Monitor Render service health, metrics, logs, and database performance via MCP tools or CLI.

Updated Aug 17, 2026
One-click install
npx skills add https://github.com/DingJun1028/esggo-kv --skill render-monitor-dingjun1028
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: render-monitor
Source: https://github.com/DingJun1028/esggo-kv/tree/main/.agents/skills/render-monitor
Command: npx skills add https://github.com/DingJun1028/esggo-kv --skill render-monitor-dingjun1028

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? It gives operators a structured way to check whether Render services are healthy, diagnose slow performance, inspect error logs, and verify deployments without manually digging through the Render dashboard. ## Core Features & Use Cases - Health Checks: Run a five-step quick check covering service status, latest deploy, error logs, CPU/memory usage, and p95 HTTP latency. - Metrics & Thresholds: Interpret CPU, memory, latency, request count, and database connection metrics against documented healthy/warning/critical thresholds. - Database & Log Monitoring: Query PostgreSQL for slow queries and connection counts, and filter or stream logs by level, status code, text, or time range. - Use Case: After a deploy, a user asks the AI to verify the service is live, confirm error rate is under 0.1%, and check that p95 latency stays below 500ms. ## Quick Start Check the health of my Render service, including its latest deploy status, recent error logs, and current CPU and memory usage.

Frequently Asked Questions about render-monitor

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check if my Render service is healthy?▼

Run a five-step health check: list services for status, list the latest deploy, query error-level logs, fetch CPU and memory metrics, and check p95 HTTP latency. A healthy service shows a live deploy, error rate under 0.1%, and p95 latency under 500ms.

How do I view Render service logs and filter errors?▼

Use the list_logs MCP tool with the service ID, filtering by level such as error, by HTTP status codes like 500 or 503, by search text, or by start and end time. As a fallback, the Render CLI supports render logs with --tail for streaming.

What metrics can I monitor on Render services?▼

Available metrics include cpu_usage, memory_usage, http_latency at p50/p95/p99 quantiles, http_request_count, bandwidth_usage, instance_count, and active_connections for databases. Each metric has documented healthy, warning, and critical thresholds by plan tier.

Does Render monitoring work without the MCP server?▼

Partially. The Render CLI covers service status, deploys, and logs as a fallback, but metrics queries and direct PostgreSQL queries require the Render MCP server configured with an API key at https://mcp.render.com/mcp.

How do I find slow queries in a Render PostgreSQL database?▼

Use query_render_postgres with the postgres ID to run SQL against pg_stat_statements, ordering by mean_exec_time to surface the slowest queries. You can also check active_connections metrics to detect connection pool pressure.

What CPU and memory thresholds indicate a problem on Render?▼

CPU above 85% and memory above 90% are critical; CPU 70-85% and memory 80-90% are warnings. A memory usage to limit ratio above 0.95 signals imminent out-of-memory risk requiring scaling or restart.