Hi,
I've started using Prometheus and blackbox_exporter yesterday.
I'm trying to display RTT and packet loss for my servers using Grafana.
However, I've noticed that, when the ping fails, I'm getting the timeout value I've configured (5 seconds) for the RTT :
curl "http://localhost:9115/probe?target=1.2.3.4&module=icmpv4"
# HELP probe_dns_lookup_time_seconds Returns the time taken for probe dns lookup in seconds
# TYPE probe_dns_lookup_time_seconds gauge
probe_dns_lookup_time_seconds 8.812000000000001e-06
# HELP probe_duration_seconds Returns how long the probe took to complete in seconds
# TYPE probe_duration_seconds gauge
probe_duration_seconds 5.000562537
# HELP probe_ip_protocol Specifies whether probe ip protocol is IP4 or IP6
# TYPE probe_ip_protocol gauge
probe_ip_protocol 4
# HELP probe_success Displays whether or not the probe was a success
# TYPE probe_success gauge
probe_success 0
I end up with the following graph :

Is there any way to have those values considered as zero or null ?
Thanks !