-
Notifications
You must be signed in to change notification settings - Fork 24
/
config.yaml.dist
37 lines (34 loc) · 1.53 KB
/
config.yaml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
probes:
# - name: name of the probe
# broker_url: ssl://iot.eclipse.org:8883
# client_cert: /path/to/cert.pem # Use either user/pass auth, certificates or both at the same time.
# client_key: /path/to/cert.key
# ca_chain: /path/to/ca-chain.pem
# insecure_skip_verify: false
# username: test
# password: xxx
# subscribe_topic: subscribe/internal/monitoring/mqtt-broker-ssl
# topic: internal/monitoring/mqtt-broker-ssl
# client_prefix: mqtt_blackbox_exporter.mqtt-broker-ssl
# messages: 10
# message_payload: "Could be any string, even with double quotes within, just \"escape the quotes\". Furthermore if you include %d it'll use the increment of the configured number of \"messages\", e.g. 0...10"
# interval: 30s
- name: mqtt-broker-ssl
broker_url: ssl://iot.eclipse.org:8883
topic: internal/monitoring/mqtt-broker-ssl
client_prefix: mqtt_blackbox_exporter.mqtt-broker-ssl
messages: 10
interval: 30s
- name: mqtt-broker-insecure-ssl
broker_url: ssl://test.mosquitto.org:8883
insecure_skip_verify: true # Don't verify TLS certificate presented by the server. DON'T USE THIS IN PRODUCTION!
topic: internal/monitoring/mqtt-broker-insecure-ssl
client_prefix: mqtt_blackbox_exporter.mqtt-broker-insecure-ssl
messages: 10
interval: 30s
- name: mqtt-broker-insecure-nonssl
broker_url: tcp://iot.eclipse.org:1883
topic: internal/monitoring/mqtt-broker-insecure-nonssl
client_prefix: mqtt_blackbox_exporter.mqtt-broker-insecure-nonssl
messages: 10
interval: 30s