You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are a few repos which have migrated from `master` to `main` this
reflects that change for the ones which have made the transition.
Additionally cleanup some End of Line whitespace.
Signed-off-by: Harold Dost <[email protected]>
Copy file name to clipboardExpand all lines: README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ See [`CONTRIBUTING.md`](CONTRIBUTING.md) for general instructions for new Promet
9
9
10
10
The main documentation contents of this website are located in the [`content/docs`](content/docs) directory.
11
11
12
-
Documentation concerning the Prometheus server is [maintained in the Prometheus server repository](https://github.com/prometheus/prometheus/tree/master/docs) and cloned into the website at build time.
12
+
Documentation concerning the Prometheus server is [maintained in the Prometheus server repository](https://github.com/prometheus/prometheus/tree/main/docs) and cloned into the website at build time.
13
13
14
14
As a guideline, please keep the documentation generally applicable and avoid use-case-specific changes.
15
15
@@ -61,7 +61,7 @@ If you have the prerequisite access rights, you can view the Netlify settings he
61
61
* GitHub webhook notifying Netlify of branch changes: https://github.com/prometheus/docs/settings/hooks
Copy file name to clipboardExpand all lines: content/blog/2017-06-21-prometheus-20-alpha3-new-rule-format.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ Alerting and recording rules are one of the critical features of Prometheus. But
25
25
26
26
* All rules ran with the same interval. We could have some heavy rules that are better off being run at a 10-minute interval and some rules that could be run at 15-second intervals.
27
27
28
-
* All rules were evaluated concurrently, which is actually Prometheus’ oldest [open bug](https://github.com/prometheus/prometheus/blob/master/rules/manager.go#L267). This has a couple of issues, the obvious one being that the load spikes every eval interval if you have a lot of rules. The other being that rules that depend on each other might be fed outdated data. For example:
28
+
* All rules were evaluated concurrently, which is actually Prometheus’ oldest [open bug](https://github.com/prometheus/prometheus/blob/main/rules/manager.go#L267). This has a couple of issues, the obvious one being that the load spikes every eval interval if you have a lot of rules. The other being that rules that depend on each other might be fed outdated data. For example:
29
29
30
30
```
31
31
instance:network_bytes:rate1m = sum by(instance) (rate(network_bytes_total[1m]))
0 commit comments