Blackbox exporter: Difference between revisions

From wikinotes
No edit summary
m (Will moved page Prometheus blackbox exporter to Blackbox exporter without leaving a redirect)
 
(34 intermediate revisions by the same user not shown)
Line 1: Line 1:
Prometheus exporter that probes endpoints over HTTP/HTTPS/DNS/TCP/ICMP.
[[prometheus]] exporter that probes endpoints over HTTP/HTTPS/DNS/TCP/ICMP.


= Documentation =
= Documentation =
Line 6: Line 6:
|-
|-
| github || https://github.com/prometheus/blackbox_exporter
| github || https://github.com/prometheus/blackbox_exporter
|-
| config syntax || https://github.com/prometheus/blackbox_exporter/blob/master/CONFIGURATION.md
|-
|-
| example config || https://github.com/prometheus/blackbox_exporter/blob/master/example.yml
| example config || https://github.com/prometheus/blackbox_exporter/blob/master/example.yml
Line 16: Line 18:
|-
|-
| <code>9115</code> || default port
| <code>9115</code> || default port
|-
| <code>http://localhost:9115</code> || simple web-ui, with sample probe to prometheus.io
|-
|-
| <code>${PREFIX}/etc/blackbox_exporter.yml</code> || config
| <code>${PREFIX}/etc/blackbox_exporter.yml</code> || config
Line 22: Line 26:
</blockquote><!-- Locations -->
</blockquote><!-- Locations -->


= Install =
= Notes =
<blockquote>
<blockquote>
<syntaxhighlight lang="bash">
{| class="wikitable"
pacman -S prometheus-blackbox-exporter  # Archlinux
|-
pkg install blackbox_exporter           # FreeBSD
| [[blackbox_exporter install]]
</syntaxhighlight>
|-
</blockquote><!-- Install -->
| [[blackbox_exporter configuration]]
 
|-
= Configuration =
| [[blackbox_exporter usage]]
<blockquote>
|-
blackbox seems to be configured both within <code>prometheus.yml</code> and it's own config file.
| [[blackbox_exporter debugging]]
 
|-
TBD.
|}
</blockquote><!-- Configuration -->
</blockquote><!-- Notes -->

Latest revision as of 14:31, 20 February 2022

prometheus exporter that probes endpoints over HTTP/HTTPS/DNS/TCP/ICMP.

Documentation

github https://github.com/prometheus/blackbox_exporter
config syntax https://github.com/prometheus/blackbox_exporter/blob/master/CONFIGURATION.md
example config https://github.com/prometheus/blackbox_exporter/blob/master/example.yml

Locations

9115 default port
http://localhost:9115 simple web-ui, with sample probe to prometheus.io
${PREFIX}/etc/blackbox_exporter.yml config

Notes

blackbox_exporter install
blackbox_exporter configuration
blackbox_exporter usage
blackbox_exporter debugging