cloudflare/pint

Public

mirrored from https://github.com/cloudflare/pintAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.13.1

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

docs/checks/promq/syntax.md

32lines · modecode

1---
2layout: default
3parent: Checks
4grand_parent: Documentation
5---
6
7# promql/syntax
8
9This is the most basic check that will report any syntax errors in a PromQL
10query on any rule.
11
12## Configuration
13
14This check doesn't have any configuration options.
15
16## How to enable it
17
18This check is enabled by default.
19
20## How to disable it
21
22You can disable this check globally by adding this config block:
23
24```js
25checks {
26 disabled = ["promql/syntax"]
27}
28```
29
30Or you can disable it per rule by adding a comment to it.
31
32`# pint disable promql/syntax`
33