Skip to content

Commit 7370476

Browse files
marciocloudflareOxyjun
authored andcommitted
[Magic] Traffic labels (cloudflare#23094)
* new network filters partial * refined info * refined text and structure * refined text and structure * refined text * added link * refined text * Apply suggestions from code review Co-authored-by: Jun Lee <[email protected]> --------- Co-authored-by: Jun Lee <[email protected]>
1 parent ea46817 commit 7370476

File tree

4 files changed

+65
-29
lines changed

4 files changed

+65
-29
lines changed

src/content/docs/magic-transit/analytics/network-analytics.mdx

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,16 @@ import { GlossaryTooltip, Render } from "~/components"
1515

1616
<Render file="analytics/network-analytics-data-averages" product="networking-services" />
1717

18-
Start by inspecting information from the source and destination tunnel panels in Network Analytics to learn more about your data.
18+
Refer to [Network Analytics](/analytics/network-analytics/) documentation to learn more.
1919

20-
Source/destination tunnel data in Network Analytics includes:
20+
## Network traffic data filters
2121

22-
- A list of your top tunnels by traffic volume.
23-
- Source and destination <GlossaryTooltip term="IP address">IP addresses</GlossaryTooltip>, ports, and protocols of tunnel traffic.
24-
- Samples of all GRE or IPsec tunnel traffic entering or leaving Cloudflare's network.
25-
- Mitigations applied (such as DDoS and Magic Firewall) to traffic entering Cloudflare.
22+
<Render
23+
file="analytics/network-traffic-filters"
24+
product="networking-services"
25+
params={{ magicProduct: "Magic Transit" }}
26+
/>
2627

27-
## Access Magic Tunnel analytics
28+
## Access Magic Tunnel traffic analytics
2829

2930
<Render file="analytics/network-analytics" product="networking-services" />

src/content/docs/magic-wan/analytics/network-analytics.mdx

Lines changed: 7 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -15,28 +15,16 @@ Magic WAN customers can view their real-time and historical network data in Netw
1515

1616
<Render file="analytics/network-analytics-data-averages" product="networking-services" />
1717

18-
To start using Network Analytics:
19-
20-
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com/) and select your account.
21-
2. Select **Analytics & Logs** > **Network Analytics**.
22-
3. You will have access to an overview of your Magic WAN network traffic data.
23-
24-
Refer to [Network Analytics](/analytics/network-analytics/) to learn more.
18+
Refer to [Network Analytics](/analytics/network-analytics/) documentation to learn more.
2519

2620
## Network traffic data filters
2721

28-
Customers can filter the data in Network Analytics on different packet characteristics including:
29-
30-
- Source and destination <GlossaryTooltip term="IP address">IP address</GlossaryTooltip>
31-
- Source and destination IP <GlossaryTooltip term="prefix">prefix</GlossaryTooltip>
32-
- Source and destination port
33-
- Magic Tunnel (<GlossaryTooltip term="IPsec tunnel">IPsec</GlossaryTooltip> or <GlossaryTooltip term="GRE tunnel">GRE</GlossaryTooltip>)
34-
- <GlossaryTooltip term="autonomous system numbers (ASNs)">ASN</GlossaryTooltip>
35-
- Protocol
36-
- Cloudflare mitigation system applied
37-
- <GlossaryTooltip term="time-to-live (TTL)">TTL</GlossaryTooltip>
38-
- TCP Flags
22+
<Render
23+
file="analytics/network-traffic-filters"
24+
product="networking-services"
25+
params={{ magicProduct: "Magic WAN" }}
26+
/>
3927

40-
## Magic Tunnel traffic analytics
28+
## Access Magic Tunnel traffic analytics
4129

4230
<Render file="analytics/network-analytics" product="networking-services" />

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44

55
1. Go to the [Cloudflare dashboard](https://dash.cloudflare.com/login) and select your account.
66
2. Select **Analytics & Logs** > **Network Analytics**.
7-
3. In the **All Traffic** tab, scroll to **Top Insights** to access the **Source tunnel** and **Destination tunnel** panels. Here you can examine information from your top tunnels by traffic volume.
8-
4. You can also apply filters to adjust the scope of information displayed. Scroll to **All traffic** > **Add filter**.
9-
5. In the **New filter** popover, choose what type of data you want to display from the left dropdown menu, an operator from the middle dropdown menu, and an action from the right dropdown menu. For example:
7+
3. In the **All Traffic** tab, scroll to **Top Insights** to access network traffic filters. By default, the dashboard shows five items, but you can display up to 25 items at once. Select the drop-down menu to make your change.
8+
4. (Optional) Hover your mouse over one of the types of traffic. You can then choose to filter for that type of traffic, or exclude it from the results.
9+
5. You can also apply filters to adjust the scope of information displayed. Scroll to **All traffic** > **Add filter**.
10+
6. In the **New filter** popover, choose what type of data you want to display from the left dropdown menu, an operator from the middle dropdown menu, and an action from the right dropdown menu. For example:
1011

1112
```txt
1213
<DESTINATION_TUNNELS> | _equals_ | <NAME_OF_YOUR_TUNNEL>
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
params:
3+
- magicProduct?
4+
---
5+
6+
import { Markdown, GlossaryTooltip } from "~/components";
7+
8+
{ props.magicProduct === "Magic Transit" && (
9+
<>
10+
<Markdown
11+
text={`
12+
Magic Transit customers can account for all traffic flows that ingresses Cloudflare's network, is blocked by DDoS rules or Magic Firewall, and egresses Cloudflare's network. This allows customers to track the total packets and bytes that traverse Cloudflare's network and are ultimately destined for their own network. This will also give Magic Transit customers increased visibility into any traffic flows that are unaccounted for.
13+
`}
14+
inline={false}
15+
/>
16+
</>
17+
)
18+
}
19+
20+
{ props.magicProduct === "Magic WAN" && (
21+
<>
22+
<Markdown
23+
text={`
24+
Magic WAN customers have increased visibility into the various traffic flows across Cloudflare One products including:
25+
26+
- Traffic ingressing to Cloudflare's network via WARP
27+
- Traffic egressing Cloudflare's network via WARP
28+
- Traffic egressing Cloudflare's network via Cloudflare Tunnel (cloudflared)
29+
30+
`}
31+
inline={false}
32+
/>
33+
</>
34+
)
35+
}
36+
37+
The complete list of filters includes:
38+
39+
- A list of your top tunnels by traffic volume.
40+
- Traffic source and destination for type of traffic, on-ramps and off-ramps, <GlossaryTooltip term="IP address">IP addresses</GlossaryTooltip>, and ports.
41+
- Destination IP ranges and ASNs.
42+
- Protocols and packet sizes.
43+
- Samples of all GRE or IPsec tunnel traffic entering or leaving Cloudflare's network.
44+
- Mitigations applied (such as DDoS and Magic Firewall) to traffic entering Cloudflare.
45+
46+
Refer below to [Access Magic Tunnel traffic analytics](#access-magic-tunnel-traffic-analytics) to learn how to access these filters.

0 commit comments

Comments
 (0)