Azure Functions Health Status
Use this skill to investigate the current status and health of an existing Azure Function App.
Write final answers in the user's language.
Required interaction
Ask only for missing inputs that are needed to identify the app and time window:
- Function App name (required unless already provided)
- Subscription ID or name (optional)
- Resource group (optional)
- Investigation time window, default
24h (optional)
If subscription or resource group is unknown, discover them with Resource Graph. If multiple matching apps are found, ask the user to choose one.
Fast path
- Call Azure best practices for
azurefunctions first when available.
- Run the bundled health script for the current shell/OS:
scripts/get-functionapp-health-status.ps1 -AppName <app-name>
scripts/get-functionapp-health-status.sh -a <app-name> on macOS/Linux or Bash
- Add
-SubscriptionId <sub> and/or -ResourceGroup <rg> when known.
- Add
-Hours <n> when the user requests a specific time window.
- For Bash, use
-s <sub>, -g <resource-group>, and/or -H <hours> when known.
- Bash script requires Azure CLI plus a working
python3 or python executable for JSON shaping.
- If bundled script execution is unavailable, use
references/health-status-commands-and-kql.md.
- Report health findings and action items; avoid dumping raw logs unless requested.
If health findings require runtime or trigger-specific interpretation, use ../azure-functions-common/references/routing.md on demand. Do not load shared language/extension references for plain status output.
Scope boundary
This skill should collect:
- Current app state: enabled/running/stopped, metadata availability, runtime availability
- Plan status and Resource Health result
- Azure Monitor metrics: instance count, CPU, memory, execution counts/units, always-ready units
- Trigger status summary and notable disabled or indexing-failed functions
- Application Insights/Log Analytics: request counts/failures/p95, dependency failures, exceptions, warning/error traces
- Recent Activity Log events
- Gaps: missing telemetry, unsupported Resource Health, unavailable diagnostic data
Do not perform full static inventory beyond fields needed to interpret health. Use the inventory skill for detailed specifications.
Next steps
- On success, suggest
azure-functions-diagnostics to interpret findings and recommend fixes when health signals are degraded or unclear.
- On failure, suggest
azure-functions-inventory to confirm app identity and configuration before retrying health checks.
Interpretation rules
- For Flex Consumption, Resource Health may return
Unknown or Unsupported; rely on app metadata, plan status, metrics, telemetry, and Activity Log.
- Workspace-based Application Insights uses
AppRequests, AppExceptions, AppTraces, and AppDependencies; classic tables may be empty.
- Treat unresolved
%SETTING_NAME% placeholders in traces/exceptions as configuration/indexing issues.
- Redact connection strings, keys, tokens, and storage secrets. It is safe to report setting names and whether values exist.
Output template
Target: <app> (<resource-group>, <subscription>, <region>)
Current status: app <state>, metadata <availability/runtime>, plan <status>, Resource Health <state/reason>
Metrics: instances <max/avg>, CPU <max>, memory <max>, executions <summary>
Execution: requests <n>, failed <n>, p95 highlights <...>; dependency failures <n>
Triggers: enabled <n>, disabled <n>; indexing/config issues <summary>
Recent changes: <Activity Log summary>
Findings: <1-3 bullets>
Recommended next actions: <1-3 bullets>
Gaps: <unavailable telemetry or unsupported checks>
1---2name: azure-functions-health-status3description: Use when investigating current Azure Functions app status and health: Running/Stopped state, Resource Health, plan status, Azure Monitor metrics, Application Insights/Log Analytics requests, failures, exceptions, traces, dependencies, and recent Activity Log. Do not use for static inventory-only requests.4---56# Azure Functions Health Status78Use this skill to investigate the current status and health of an existing Azure Function App.910Write final answers in the user's language.1112## Required interaction1314Ask only for missing inputs that are needed to identify the app and time window:1516- Function App name (required unless already provided)17- Subscription ID or name (optional)18- Resource group (optional)19- Investigation time window, default `24h` (optional)2021If subscription or resource group is unknown, discover them with Resource Graph. If multiple matching apps are found, ask the user to choose one.2223## Fast path24251. Call Azure best practices for `azurefunctions` first when available.262. Run the bundled health script for the current shell/OS:27 - `scripts/get-functionapp-health-status.ps1 -AppName <app-name>`28 - `scripts/get-functionapp-health-status.sh -a <app-name>` on macOS/Linux or Bash29 - Add `-SubscriptionId <sub>` and/or `-ResourceGroup <rg>` when known.30 - Add `-Hours <n>` when the user requests a specific time window.31 - For Bash, use `-s <sub>`, `-g <resource-group>`, and/or `-H <hours>` when known.32 - Bash script requires Azure CLI plus a working `python3` or `python` executable for JSON shaping.333. If bundled script execution is unavailable, use `references/health-status-commands-and-kql.md`.344. Report health findings and action items; avoid dumping raw logs unless requested.3536If health findings require runtime or trigger-specific interpretation, use `../azure-functions-common/references/routing.md` on demand. Do not load shared language/extension references for plain status output.3738## Scope boundary3940This skill should collect:4142- Current app state: enabled/running/stopped, metadata availability, runtime availability43- Plan status and Resource Health result44- Azure Monitor metrics: instance count, CPU, memory, execution counts/units, always-ready units45- Trigger status summary and notable disabled or indexing-failed functions46- Application Insights/Log Analytics: request counts/failures/p95, dependency failures, exceptions, warning/error traces47- Recent Activity Log events48- Gaps: missing telemetry, unsupported Resource Health, unavailable diagnostic data4950Do not perform full static inventory beyond fields needed to interpret health. Use the inventory skill for detailed specifications.5152## Next steps5354- On success, suggest `azure-functions-diagnostics` to interpret findings and recommend fixes when health signals are degraded or unclear.55- On failure, suggest `azure-functions-inventory` to confirm app identity and configuration before retrying health checks.5657## Interpretation rules5859- For Flex Consumption, Resource Health may return `Unknown` or `Unsupported`; rely on app metadata, plan status, metrics, telemetry, and Activity Log.60- Workspace-based Application Insights uses `AppRequests`, `AppExceptions`, `AppTraces`, and `AppDependencies`; classic tables may be empty.61- Treat unresolved `%SETTING_NAME%` placeholders in traces/exceptions as configuration/indexing issues.62- Redact connection strings, keys, tokens, and storage secrets. It is safe to report setting names and whether values exist.6364## Output template6566```text67Target: <app> (<resource-group>, <subscription>, <region>)68Current status: app <state>, metadata <availability/runtime>, plan <status>, Resource Health <state/reason>69Metrics: instances <max/avg>, CPU <max>, memory <max>, executions <summary>70Execution: requests <n>, failed <n>, p95 highlights <...>; dependency failures <n>71Triggers: enabled <n>, disabled <n>; indexing/config issues <summary>72Recent changes: <Activity Log summary>73Findings: <1-3 bullets>74Recommended next actions: <1-3 bullets>75Gaps: <unavailable telemetry or unsupported checks>76```