Skip to content

Commit 0787a9e

Browse files
added code
1 parent 4727a81 commit 0787a9e

File tree

1 file changed

+46
-15
lines changed

1 file changed

+46
-15
lines changed

src/content/partials/networking-services/analytics/traceroutes.mdx

Lines changed: 46 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,41 +5,72 @@ params:
55
- magicWord
66
---
77

8-
import { DashButton, Markdown } from "~/components";
8+
import { Aside, DashButton, Markdown, Tabs, TabItem } from "~/components";
99

1010
{props.productName} customers can run traceroutes to understand the hop by hop Internet path and latencies from Cloudflare's network to their own network.
1111

1212
{ props.magicWord === "wan-tunnels" && (
1313
<>
1414
<Markdown
1515
text={`
16-
## To run a traceroute from a specific Cloudflare data center to your network:
16+
To run a traceroute from a specific Cloudflare data center to your network:
1717
1818
1. Log in to [Cloudflare One](https://one.dash.cloudflare.com/) > **Insights**.
1919
2. Go to **Network visibility** > **WAN connector health**.
2020
3. Select the tunnel you want to run the traceroute on.
2121
4. Select the three dots > **Traceroute details**.
2222
`}
23+
inline={false}
2324
/>
2425
</>
2526
)}
2627

2728
{ props.magicWord !== "wan-tunnels" && (
2829
<>
29-
<Markdown
30-
text={`
31-
## To run a traceroute from a specific Cloudflare data center to your network:
30+
<Aside type="note">
31+
To change between the new dashboard experience and the old one, find the banner at the top of the screen.
32+
</Aside>
3233

33-
1. In the Cloudflare dashboard, go to ${props.productName}'s **Network health** page.
34-
`}
35-
/>
36-
<DashButton url={props.dashButtonPath} />
37-
<Markdown
38-
text={`
39-
2. Expand a Magic Tunnel, and find the Cloudflare data center where the traceroute will be run from.
40-
3. Select **Traceroute for details**.
41-
`}
42-
/>
34+
To run a traceroute from a specific Cloudflare data center to your network:
35+
36+
<Tabs syncKey="dasNewNav">
37+
<TabItem label="Old dashboard">
38+
<Markdown
39+
text={`
40+
1. In the Cloudflare dashboard, go to ${props.productName}'s **Network health** page.
41+
`}
42+
inline={false}
43+
/>
44+
45+
<DashButton url={props.dashButtonPath} />
46+
47+
<Markdown
48+
text={`
49+
2. Expand a Magic Tunnel, and find the Cloudflare data center where the traceroute will be run from.
50+
3. Select **Traceroute for details**.
51+
`}
52+
inline={false}
53+
/>
54+
</TabItem>
55+
56+
<TabItem label="New dashboard" icon="rocket">
57+
<Markdown
58+
text={`
59+
1. In the Cloudflare dashboard, go to ${props.productName}'s **Network health** page.
60+
`}
61+
inline={false}
62+
/>
63+
<DashButton url={props.dashButtonPath} />
64+
65+
<Markdown
66+
text={`
67+
2. Select the tunnel you want to run the traceroute on.
68+
3. Select the three dots > **Traceroute details**.
69+
`}
70+
inline={false}
71+
/>
72+
</TabItem>
73+
</Tabs>
4374
</>
4475
)}
4576

0 commit comments

Comments
 (0)