Removes the go-neb Matrix integration as it's discontinued.
Keeps only the two actively maintained Matrix integrations:
- matrix-alertmanager
- matrix-hookshot
Addresses final review comment on PR #2809.
Signed-off-by: Sibasis Padhi <sibasis.padhi@gmail.com>
Removes the PowerDNS exporter link entirely as the project
has not been updated in 11 years and no actively maintained
alternative is available.
Addresses review feedback on PR #2805.
Signed-off-by: Sibasis Padhi <sibasis.padhi@gmail.com>
Improves the download instructions by:
- Explaining the URL pattern with all placeholders clearly defined
- Listing what <VERSION>, <OS>, and <ARCH> mean with examples
- Using concrete example values (v1.10.2, linux-amd64) in commands
- Making it easier for new users to understand what to replace
Addresses review feedback on PR #2810.
Signed-off-by: Sibasis Padhi <sibasis.padhi@gmail.com>
Add warning blocks to console documentation explaining that console
templates and libraries are no longer bundled with Prometheus 3.0 and
must be provided by users via command-line flags. Update GitHub links
to reference release-2.55 branch instead of main, noting that 2.x
console libraries are unmaintained and contain known CVEs
Signed-off-by: Julien Pivotto <291750+roidelapluie@users.noreply.github.com>
Fixes #1896
Clarified download instructions for Node Exporter to help users:
- Select the appropriate bundle for their OS and architecture
- Added note about platform-specific downloads (linux-amd64, darwin-arm64, etc.)
- Made tar command more specific to match downloaded file pattern
- Improved clarity for new users
Signed-off-by: Sibasis Padhi <sibasis.padhi@gmail.com>
Fixes #2366
Replaced the link to go-neb (which has been discontinued) with
matrix-hookshot, the spiritual successor recommended in the
go-neb repository for Matrix notifications.
Signed-off-by: Sibasis Padhi <sibasis.padhi@gmail.com>
Fixes #1806
Added definition for 'mixin' to the glossary, explaining it as
a reusable set of Prometheus alerts, recording rules, and Grafana
dashboards typically packaged using Jsonnet for standardized
monitoring across infrastructure components.
Signed-off-by: Sibasis Padhi <sibasis.padhi@gmail.com>
Fixes #2222
The previous link to ledgr/powerdns_exporter returns 404.
Updated to janeczku/powerdns_exporter which is actively
maintained and the most popular PowerDNS exporter fork.
Signed-off-by: Sibasis Padhi <sibasis.padhi@gmail.com>
* Blog post about new relabeling visualizer in Prometheus 3.8.0
Signed-off-by: Julius Volz <julius.volz@gmail.com>
* Reword introduction section
Signed-off-by: Julius Volz <julius.volz@gmail.com>
* Allow screenshots + videos to be slightly taller
Signed-off-by: Julius Volz <julius.volz@gmail.com>
---------
Signed-off-by: Julius Volz <julius.volz@gmail.com>
When following a link to a fragment (#foo) on a long documentation page,
the browser would try to scroll to the fragment too early, before some
additional client-side layout shifts (could be due to font loading,
highlighting, etc.) would cause the scroll position to be wrong again. This
component waits for the layout to settle and then manually scrolls to the
requested fragment again.
You can see the problem by clicking on:
https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config
It usually does not scroll directly to the relabeling section, but
somewhere above it.
Signed-off-by: Julius Volz <julius.volz@gmail.com>