Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add missing uneditable-rule #198

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,13 @@ The linter implements the following rules:
* [panel-datasource-rule](./rules/panel-datasource-rule.md) - Checks that each panel uses the templated datasource.
* [panel-title-description-rule](./rules/panel-title-description-rule.md) - Checks that each panel has a title and description.
* [panel-units-rule](./rules/panel-units-rule.md) - Checks that each panel uses has valid units defined.
* `panel-no-targets-rule` - Checks that each panel has at least one target.
* panel-no-targets-rule - Checks that each panel has at least one target.
* [target-promql-rule](./rules/target-promql-rule.md) - Checks that each target uses a valid PromQL query.
* [target-rate-interval-rule](./rules/target-rate-interval-rule.md) - Checks that each target uses $__rate_interval.
* [target-job-rule](./rules/target-job-rule.md) - Checks that every PromQL query has a job matcher.
* [target-instance-rule](./rules/target-instance-rule.md) - Checks that every PromQL query has a instance matcher.
* `target-counter-agg-rule` - Checks that any counter metric (ending in _total) is aggregated with rate, irate, or increase.
* target-counter-agg-rule - Checks that any counter metric (ending in _total) is aggregated with rate, irate, or increase.
* [uneditable-rule](./rules/template-uneditable-rule.md) - Checks that the dashboard is not editable.

## Related Rules

Expand Down
Loading