prometheus: add tls_connect blackbox module

This allows checking of TLS servers. It can be useful to check
RabbitMQ TLS, including certificate expiry.

Change-Id: I2192d3481d790c11b110bf10082b3efeade75463
This commit is contained in:
Mark Goddard 2021-07-23 10:40:56 +01:00
parent e63d985ccb
commit 94c6b8e220
2 changed files with 9 additions and 0 deletions

View File

@ -15,6 +15,10 @@ modules:
method: POST
tcp_connect:
prober: tcp
tls_connect:
prober: tcp
tcp:
tls: true
ssh_banner:
prober: tcp
tcp:

View File

@ -0,0 +1,5 @@
---
features:
- |
Adds a ``tls_connect`` module to the Prometheus blackbox exporter. This can
be used to test connectivity of TLS servers.