From 94c6b8e220ad2d7ecf4664e566eb08f8f7592f69 Mon Sep 17 00:00:00 2001 From: Mark Goddard Date: Fri, 23 Jul 2021 10:40:56 +0100 Subject: [PATCH] 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 --- .../prometheus/templates/prometheus-blackbox-exporter.yml.j2 | 4 ++++ .../notes/blackbox-tls-connect-517cd8ebdf87f16e.yaml | 5 +++++ 2 files changed, 9 insertions(+) create mode 100644 releasenotes/notes/blackbox-tls-connect-517cd8ebdf87f16e.yaml diff --git a/ansible/roles/prometheus/templates/prometheus-blackbox-exporter.yml.j2 b/ansible/roles/prometheus/templates/prometheus-blackbox-exporter.yml.j2 index 5b39336ab1..bc2f513e46 100644 --- a/ansible/roles/prometheus/templates/prometheus-blackbox-exporter.yml.j2 +++ b/ansible/roles/prometheus/templates/prometheus-blackbox-exporter.yml.j2 @@ -15,6 +15,10 @@ modules: method: POST tcp_connect: prober: tcp + tls_connect: + prober: tcp + tcp: + tls: true ssh_banner: prober: tcp tcp: diff --git a/releasenotes/notes/blackbox-tls-connect-517cd8ebdf87f16e.yaml b/releasenotes/notes/blackbox-tls-connect-517cd8ebdf87f16e.yaml new file mode 100644 index 0000000000..4ec3eecd43 --- /dev/null +++ b/releasenotes/notes/blackbox-tls-connect-517cd8ebdf87f16e.yaml @@ -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.