data-api-builder-health
Configure and operate the Data API Builder /health endpoint for runtime, data-source, and per-entity readiness checks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Configure and operate the Data API Builder /health endpoint for runtime, data-source, and per-entity readiness checks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Run SQL Commander as a companion container for browser-based SQL access, with optional Azure Container Apps configuration.
Orchestrate SQL Server and Data API Builder with .NET Aspire for local development, health-aware startup, and dashboard-driven diagnostics.
Add MCP Inspector to .NET Aspire AppHost for local SQL MCP Server validation and tool discovery.
Add SQL Commander to .NET Aspire for lightweight SQL browsing and query execution during local DAB development.
Use SQL Database Projects (.sqlproj) with .NET Aspire for declarative schema deployment via dacpac.
Deploy Data API Builder and SQL MCP Server to Azure App Service for Linux, with or without containers.
| name | data-api-builder-health |
| description | Configure and operate the Data API Builder /health endpoint for runtime, data-source, and per-entity readiness checks. |
| license | MIT |
/health into a load balancer, container probe, or uptime monitor.runtime.health and set roles (in production, roles is mandatory or /health returns 403).data-source.health with a friendly name and threshold-ms connectivity budget.health blocks on important entities with first (row sample size) and threshold-ms.dab start and curl /health; expect a cached comprehensive report with aggregate Healthy status and per-check details."runtime": {
"health": { "enabled": true, "roles": ["monitoring"], "cache-ttl-seconds": 10, "max-query-parallelism": 4 }
},
"data-source": {
"health": { "enabled": true, "name": "primary-sql-db", "threshold-ms": 1500 }
},
"entities": {
"Book": { "health": { "enabled": true, "first": 50, "threshold-ms": 500 } }
}
/ is always public and returns version/status only — use it for liveness./health for readiness; protect it via roles in production (["anonymous"] to expose publicly).max-query-parallelism (range 1-8), not max-dop; set cache-ttl-seconds to 0 to disable report caching.data-api-builder-configdata-api-builder-clidata-api-builder-authdata-api-builder-observability