The link to Storage is wrong
The link to "Storage" in the docs root page, leads to https://prometheus.io/docs/prometheus/storage/ instead of https://prometheus.io/docs/prometheus/latest/storage/ (note the missing "latest" segment), so following it gets a "Page not found" error.
All links under Content on https://prometheus.io/docs/prometheus/latest/ are broken.
/assign
Half a year later and the links are still broken.
Happened to see this, so created https://github.com/prometheus/prometheus/pull/14475 to fix it.
In case @dc6c or those commenting want to know how I fixed it:
- I searched this repo for the links but couldn't find them.
- Added #2488 to address that for the future.
- I found the docs section of the Prometheus repo: https://github.com/prometheus/prometheus/blob/main/docs
- In there, found the
index.mdpage: https://github.com/prometheus/prometheus/blob/main/docs/index.md - Clicked the
Editbutton in GitHub (and said OK to forking the project). - Updated the links to their correct versions, using the
/latestURL structure. - Submitted that as a PR: https://github.com/prometheus/prometheus/pull/14475
Whole thing took about 20ish minutes if you include the searching around. Never left the GitHub UI to do it.
This is not an admonishment of you by any means; many people aren't able to make space for these sorts of contributions. But I wanted to leave this here in case I can remove barriers in the future to "being the change" you're seeking. I had never touched the Prometheus docs before today.