From 3860666070e3e31e41b1ac5c7b40f21c0167d085 Mon Sep 17 00:00:00 2001 From: Scott Wager <51394257+ScottWager@users.noreply.github.com> Date: Thu, 19 Mar 2026 21:58:41 +0000 Subject: [PATCH] Fix typos --- docs/checks/promql/series.md | 4 ++-- docs/checks/rule/name.md | 4 ++-- docs/configuration.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/checks/promql/series.md b/docs/checks/promql/series.md index 7c95b2f2..8b6ae072 100644 --- a/docs/checks/promql/series.md +++ b/docs/checks/promql/series.md @@ -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 @@ -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 diff --git a/docs/checks/rule/name.md b/docs/checks/rule/name.md index cc7b10e3..0cbd36b7 100644 --- a/docs/checks/rule/name.md +++ b/docs/checks/rule/name.md @@ -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" } } @@ -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" } ``` diff --git a/docs/configuration.md b/docs/configuration.md index c19430d0..16ca491f 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -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" }