Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions docs/checks/promql/series.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ rather than it's existence.

## Common problems

If you see this check complaining about some metric it's might due to a number
If you see this check complaining about some metric it might be due to a number
of different issues. Here are some usual cases.

### Your query is using ALERTS or ALERTS_FOR_STATE metrics
Expand Down Expand Up @@ -262,7 +262,7 @@ Let's say we have a query using `my_service_errors_total{env="prod"}` and three
- `promA` - `my_service_errors_total{env="prod", job="pushgateway", instance="foo", reason="bad request"}`
- `promC` - `my_service_errors_total{env="prod", job="pushgateway", instance="bar", reason="not found"}`

but `promB` does have any time series for `my_service_errors_total` at all.
but `promB` doesn't have any time series for `my_service_errors_total` at all.
We also have this configuration for pint:

```js
Expand Down
4 changes: 2 additions & 2 deletions docs/checks/rule/name.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ rule {
}

name "rec:.+" {
comment = "ALl recording rules must use the `rec:` prefix."
comment = "All recording rules must use the `rec:` prefix."
severity = "bug"
}
}
Expand Down Expand Up @@ -84,7 +84,7 @@ Example pint rule:

```js
name "rec:.+" {
comment = "ALl recording rules must use the `rec:` prefix."
comment = "All recording rules must use the `rec:` prefix."
severity = "bug"
}
```
Expand Down
2 changes: 1 addition & 1 deletion docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ prometheus "prod-tls" {
tags = ["prod"]
tls {
serverName = "prometheus.example.com"
clientCert = "/ssl/ca.pem"
caCert = "/ssl/ca.pem"
clientCert = "/ssl/client.pem"
clientKey = "/ssl/client.key"
}
Expand Down
Loading