Does blackbox exporter support telnet probe?

1.1k views Asked by At

Does blackbox exporter support telnet probe? I cannot see this in the blackbox example config file in blackbox.yml

2

There are 2 answers

0
William Dekou On BEST ANSWER

Yeah, the prometheus blackbox exporter support telnet this way

tcp_connect_example:
    prober: tcp
    timeout: 5s

Every tcp probe is a telnet probe.

0
dhyanio On

Yes, Blackbox exporter supports TCP module you can tell black box in its blackbox.yml config file like this.

tcp_connect:
    prober: tcp
    timeout: 5s

for testing just run

curl 'http://localhost:9115/probe?target=10.20.10.10:22&module=tcp_connect&debut=true'