summaryrefslogtreecommitdiff
path: root/roles/monitoring/prometheus/exporter/blackbox/defaults/main.yml
blob: fcf66555e14f380a29e2a31b5b1bec49e4c20340 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
prometheus_exporter_blackbox_modules:
  icmp:
    prober: icmp
  tcp_connect:
    prober: tcp
  tcp_tls:
    prober: tcp
    tcp:
      tls: true
      tls_config:
        insecure_skip_verify: true
  http_2xx:
    prober: http
  ssh_banner:
    prober: tcp
    tcp:
      query_response:
      - expect: "^SSH-2.0-"
      - send: "SSH-2.0-blackbox-ssh-check"

prometheus_exporter_blackbox_modules_extra: {}