๐ Rules Documentation
Azure Functions Doctor uses a modular rules system to define diagnostic checks declaratively. The tool now supports both Programming Model v1 and v2 with separate rule sets for each model.
Each rule specifies what to validate, how to validate it, and what to show when the check passes or fails โ without modifying the core Python code. This makes the tool extensible and customizable.
๐ Location
The rules are organized in separate files under the assets/rules/ directory:
src/
โโโ azure_functions_doctor/
โโโ assets/
โโโ rules/
โโโ v1.json ๐ v1 Programming Model rules
โโโ v2.json ๐ v2 Programming Model rules
Rule File Selection
The tool automatically selects the appropriate rule file based on the detected programming model:
- v1 projects: Uses
v1.json
(function.json-based projects) - v2 projects: Uses
v2.json
(decorator-based projects)
Rules are read from theassets/rules/v1.json
orassets/rules/v2.json
files depending on the detected programming model. Legacyrules.json
support has been removed.
โ Structure of a Rule
Each rule is a JSON object with the following fields:
{
"id": "check_python_version",
"section": "python_env",
"label": "Python version",
"type": "compare_version",
"target": "python",
"operator": ">=",
"value": "3.9",
"hint": "Install Python 3.9 or higher."
}
๐ Fields Explained
Field | Type | Description |
---|---|---|
id |
string | Unique identifier for the rule |
section |
string | Logical group (e.g. python_env , config_files ) |
label |
string | Human-readable label for the check |
type |
string | Rule type (see below) |
target |
string | Subject to evaluate (e.g. Python version, file path) |
operator |
string | Comparison operator (e.g. == , != , >= ) |
value |
any | Expected value to compare |
hint |
string | Suggestion if the rule fails |
Supported Rule Types
1. compare_version
Compare semantic versions.
{
"type": "compare_version",
"target": "python",
"operator": ">=",
"value": "3.9"
}
- Valid
target
:"python"
,"azure-functions-core-tools"
Additional rule types (v2 additions)
The project also includes several adapter-style and higher-level validation checks used by the default v2.json
ruleset:
executable_exists
โ verifies an executable is available on PATH (condition:{"target": "func"}
or similar).any_of_exists
โ acceptstargets: [ ... ]
and passes if any listed target exists (supports env vars, host.json keys viahost.json:<path>
, or relative file paths).file_glob_check
โ searches the project for files matching provided globpatterns
(useful to flag unwanted files like secrets or build artifacts).host_json_property
โ lightweight check for presence of a property inhost.json
using a simple JSON pointer string (e.g."$.extensionBundle"
).binding_validation
โ shallow validation offunction.json
bindings (e.g. ensureshttpTrigger
bindings declareauthLevel
and havemethods
where expected).cron_validation
โ heuristic validation fortimerTrigger
schedule
expressions found infunction.json
(accepts 5- or 6-field cron-like strings).
These checks are implemented as adapters in src/azure_functions_doctor/handlers.py
and are intentionally lightweight: they cover common misconfigurations without attempting full schema validation. If you need stricter validation, consider adding a custom handler or extending the existing one.
2. file_exists
Check whether a file exists.
{
"type": "file_exists",
"target": "host.json"
}
3. file_contains
Check whether a file contains a specific string or key path.
{
"type": "file_contains",
"target": "host.json",
"key_path": ["version"],
"value": "2.0"
}
4. custom
You may register custom handlers in code using the @handler.register("your_type")
decorator. Add a "type": "custom"
field and let your handler interpret additional keys under condition
.
๐ Grouping by section
Sections allow grouping related checks together for better readability in the CLI output:
Example:
{
"section": "python_env",
"label": "Python Version",
...
}
Predefined sections might include:
python_env
core_tools
config_files
dependencies
network
You can create your own section names if desired.
๐งน Extending the Rules
To add a new rule:
For v2 Projects (Recommended)
- Open
src/azure_functions_doctor/assets/rules/v2.json
- Append your rule object to the array
- Save and rerun
azure-functions doctor
For v1 Projects
- Open
src/azure_functions_doctor/assets/rules/v1.json
- Append your rule object to the array
- Save and rerun
azure-functions doctor
For Universal Rules
If you want a rule to apply to both v1 and v2 projects, you'll need to add it to both files with appropriate model-specific configurations.
Example:
{
"id": "check_requirements_txt_exists",
"section": "dependencies",
"label": "requirements.txt exists",
"type": "file_exists",
"target": "requirements.txt",
"hint": "Create a requirements.txt file to declare Python dependencies."
}
Tips
- Use
hint
to provide helpful, actionable suggestions. - Use consistent
section
names for better CLI grouping. - If you're writing custom rule types, register them in
handlers.py
.
๐ฅช Testing Your Changes
After editing v1.json
or v2.json
, you can run:
azure-functions doctor --verbose
To see grouped results and hints.
๐ Example rules.json
(simplified)
[
{
"id": "check_python_version",
"section": "python_env",
"label": "Python version",
"type": "compare_version",
"target": "python",
"operator": ">=",
"value": "3.9",
"hint": "Install Python 3.9 or higher."
},
{
"id": "check_host_json_exists",
"section": "config_files",
"label": "host.json exists",
"type": "file_exists",
"target": "host.json"
}
]
๐ฌ Contribute New Rules
Want to improve the default rules? Feel free to open a PR or discussion on
๐ GitHub Repository