cloudflare/pint

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.1.2

Branches

Tags

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

Clone

HTTPS

Download ZIP

docs/examples/simple.hcl

13lines · modecode

1# This is a simplified config that only uses "series" check to report any
2# alert that is using time series not found in Prometheus server.
3
4prometheus "prod" {
5 uri = "https://prod.example.com"
6 timeout = "1m"
7}
8
9rule {
10 series {
11 severity = "bug"
12 }
13}
14