Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ import { Render } from "~/components";
dashInfo: "The dashboard shows the global view of tunnel health as measured from all Cloudflare locations.",
productPath: "**Magic Transit** > **Network health**",
graphQL: "/magic-transit/analytics/query-tunnel-health/",
notificationsPath: "[notifications wizard](/magic-transit/network-health/configure-magic-tunnel-health-alerts/)"
notificationsPath: "[notifications wizard](/magic-transit/network-health/configure-magic-tunnel-health-alerts/)",
packetCaptures: "/magic-firewall/packet-captures/",
networkAnalytics: "/magic-transit/analytics/network-analytics/"
}}
/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ import { Render } from "~/components";
graphQL: "/magic-wan/analytics/query-tunnel-health/",
notificationsPath:
"[notifications wizard](/magic-wan/configuration/common-settings/configure-magic-tunnel-health-alerts/)",
packetCaptures: "/magic-firewall/packet-captures/",
networkAnalytics: "/magic-wan/analytics/network-analytics/"
}}
/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,9 @@ end
dashInfo: "The dashboard shows the view of tunnel health as measured from each Cloudflare location where your traffic is likely to land.",
productPath: "**Magic WAN** > **Tunnel health**",
graphQL: "/magic-wan/analytics/query-tunnel-health/",
notificationsPath: "[notifications wizard](/magic-wan/configuration/common-settings/configure-magic-tunnel-health-alerts/)"
notificationsPath: "[notifications wizard](/magic-wan/configuration/common-settings/configure-magic-tunnel-health-alerts/)",
packetCaptures: "/magic-firewall/packet-captures/",
networkAnalytics: "/magic-wan/analytics/network-analytics/"
}}
/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,8 @@ Health checks might take some time to stabilize after the configuration is chang
dashInfo: "The dashboard shows the view of tunnel health as measured from each Cloudflare location where your traffic is likely to land.",
productPath: "**Magic WAN** > **Tunnel health**",
graphQL: "/magic-wan/analytics/query-tunnel-health/",
notificationsPath: "[notifications wizard](/magic-wan/configuration/common-settings/configure-magic-tunnel-health-alerts/)"
notificationsPath: "[notifications wizard](/magic-wan/configuration/common-settings/configure-magic-tunnel-health-alerts/)",
packetCaptures: "/magic-firewall/packet-captures/",
networkAnalytics: "/magic-wan/analytics/network-analytics/"
}}
/>
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,9 @@ system gre route add net <IP_ADDRESS> tunnelname <TUNNEL_NAME>
dashInfo: "The dashboard shows the view of tunnel health as measured from each Cloudflare location where your traffic is likely to land.",
productPath: "**Magic WAN** > **Tunnel health**",
graphQL: "/magic-wan/analytics/query-tunnel-health/",
notificationsPath: "[notifications wizard](/magic-wan/configuration/common-settings/configure-magic-tunnel-health-alerts/)"
notificationsPath: "[notifications wizard](/magic-wan/configuration/common-settings/configure-magic-tunnel-health-alerts/)",
packetCaptures: "/magic-firewall/packet-captures/",
networkAnalytics: "/magic-wan/analytics/network-analytics/"
}}
/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ params:
- productPath
- graphQL
- notificationsPath
- packetCaptures
- networkAnalytics
---

import { GlossaryTooltip, Markdown, Tabs, TabItem } from "~/components";
Expand Down Expand Up @@ -42,4 +44,23 @@ To check for anycast tunnel health:
- **Network Analytics**: This will send you to the Analytics section of the dash, prefiltered with the tunnel you want to inspect.
5. Alternatively, from the list of tunnels, select the tunnel you want to inspect to access details about it.
</TabItem>
</Tabs>
</Tabs>

## Check tunnel health for a specific tunnel

Beyond having a wide view into all connections, you can drill down into a specific tunnel to check its health status and other information. Refer to the blue note above to learn how to access the new dashboard experience, and:

1. Go to <Markdown text={props.productPath} />.
2. Find and select the tunnel you wish to inspect.

The next screen shows you detailed information about the tunnel, including:
- Status information
- Up: More than 80% of health checks are passing.
- Degraded: More than 40% of health checks are passing.
- Down: Less than 40% of health checks are passing.
- Health checks passed in the last hour
- Traffic volume in the last hour
Comment on lines +61 to +62
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i'd move these two above status information just for formatting sake


If you select the three dots in front of the tunnel you want to inspect, you have access to the following tools:
- Packet captures: Collect <a href={props.packetCaptures}>packet level data for you traffic</a>
- Network Analytics: Leverage real-time visibility into <a href={props.networkAnalytics}>network analytics</a>.
Loading