# Get server health statuscurl http://localhost:3000/api/monitoring/health# Get performance metricscurl http://localhost:3000/api/monitoring/metrics?server=my-server&range=1h# Get system overviewcurl http://localhost:3000/api/monitoring/overview
# Get recent errorscurl "http://localhost:3000/api/logs?level=error&since=1h"# Search logs by servercurl "http://localhost:3000/api/logs?server=github-mcp&limit=100"# Get logs for specific requestcurl "http://localhost:3000/api/logs?requestId=req_123456"# Filter by time rangecurl "http://localhost:3000/api/logs?from=2024-01-20T00:00:00Z&to=2024-01-20T23:59:59Z"
# Get error rates by servercurl "http://localhost:3000/api/monitoring/errors?groupBy=server&since=1h"# Get error detailscurl "http://localhost:3000/api/monitoring/errors?server=github-mcp&details=true"