v-m: Redo Internet/DNS connectivity checks (again)
Using domain names in the "blackbox" probe makes it difficult to tell the difference between a complete Internet outage and DNS issues. I switched to using these names when I changed how the firewall routed traffic to the public DNS servers, since those were the IP addresses I was using to determine if the Internet was "up." I think it makes sense, though, to just ping the upstream gateway for that check. If EverFast changes their routing or numbering, we'll just have to update our checks to match.pull/27/head
parent
8f354a4460
commit
3f39747557
|
@ -10,7 +10,7 @@ modules:
|
||||||
timeout: 2s
|
timeout: 2s
|
||||||
dns_recursive:
|
dns_recursive:
|
||||||
dns:
|
dns:
|
||||||
query_name: news.ycombinator.com
|
query_name: github.com
|
||||||
query_type: A
|
query_type: A
|
||||||
prober: dns
|
prober: dns
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
|
|
|
@ -34,10 +34,7 @@ scrape_configs:
|
||||||
- icmp
|
- icmp
|
||||||
static_configs:
|
static_configs:
|
||||||
- targets:
|
- targets:
|
||||||
- github.com
|
- 23.29.47.1
|
||||||
- cloudflare.com
|
|
||||||
- amazonaws.com
|
|
||||||
- azure.com
|
|
||||||
relabel_configs:
|
relabel_configs:
|
||||||
- source_labels: [__address__]
|
- source_labels: [__address__]
|
||||||
target_label: __param_target
|
target_label: __param_target
|
||||||
|
|
Loading…
Reference in New Issue