Skip to content

Commit 23af821

Browse files
[Chore] Align with public stats component (#19828)
* [Chore] Align with public stats component * Apply suggestions from code review Co-authored-by: marciocloudflare <[email protected]> --------- Co-authored-by: marciocloudflare <[email protected]>
1 parent 0d27915 commit 23af821

File tree

9 files changed

+35
-33
lines changed

9 files changed

+35
-33
lines changed

src/components/PublicStats.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ type Props = z.infer<typeof props>;
66
77
const mappings = {
88
data_center_cities: "over 330 cities",
9-
total_bandwidth: "over 296 Tbps network capacity",
10-
network_peers: "over 12,500 network peers",
9+
total_bandwidth: "over 321 Tbps network capacity",
10+
network_peers: "over 13,000 network peers",
1111
} as const satisfies Record<string, string>;
1212
1313
const props = z.object({

src/content/docs/learning-paths/workers/concepts/workers-concepts.mdx

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@ title: Cloudflare Workers
33
pcx_content_type: learning-unit
44
sidebar:
55
order: 3
6-
76
---
87

9-
import { Render, WorkersArchitectureDiagram } from "~/components"
8+
import { Render, WorkersArchitectureDiagram } from "~/components";
109

1110
Cloudflare Workers gives developers the power to deploy serverless code instantly to Cloudflare's global network.
1211

@@ -24,7 +23,7 @@ The [Workers runtime](https://blog.cloudflare.com/workerd-open-source-workers-ru
2423

2524
## Execution
2625

27-
The Cloudflare Workers runtime runs in every data center of [Cloudflare's global network of over 300 cities](https://www.cloudflare.com/network/). Every Worker run within its own isolate. Isolate architecture is what makes Workers efficient.
26+
The Cloudflare Workers runtime runs in every data center of [Cloudflare's global network](https://www.cloudflare.com/network/). Every Worker run within its own isolate. Isolate architecture is what makes Workers efficient.
2827

2928
### Isolates
3029

@@ -42,17 +41,17 @@ Workers uses [isolates](/workers/reference/how-workers-works/#isolates): lightwe
4241

4342
By reading this page, you have learned:
4443

45-
* The basics of how Worker projects are organized.
46-
* The fundamentals of how Workers execute on the Cloudflare network.
47-
* How the request to response flow executes.
44+
- The basics of how Worker projects are organized.
45+
- The fundamentals of how Workers execute on the Cloudflare network.
46+
- How the request to response flow executes.
4847

4948
In the next module, you build and deploy your first Worker to the Cloudflare global network.
5049

5150
## Related resources
5251

53-
* [Cloud computing without containers](https://blog.cloudflare.com/cloud-computing-without-containers) - A blog post detailing the containers versus isolates difference in the context of Cloudflare.
54-
* [How Workers works](/workers/reference/how-workers-works/) - Learn the difference between the Workers runtime versus traditional browsers and Node.js.
55-
* [How the cache works](/workers/reference/how-the-cache-works/) - Learn how Workers interacts with the Cloudflare cache.
52+
- [Cloud computing without containers](https://blog.cloudflare.com/cloud-computing-without-containers) - A blog post detailing the containers versus isolates difference in the context of Cloudflare.
53+
- [How Workers works](/workers/reference/how-workers-works/) - Learn the difference between the Workers runtime versus traditional browsers and Node.js.
54+
- [How the cache works](/workers/reference/how-the-cache-works/) - Learn how Workers interacts with the Cloudflare cache.
5655

5756
## Feedback
5857

src/content/docs/reference-architecture/architectures/cdn.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ sidebar:
1010
updated: 2022-12-02
1111
---
1212

13-
import { Render } from "~/components";
13+
import { Render, PublicStats } from "~/components";
1414

1515
## Introduction
1616

@@ -128,7 +128,7 @@ In the above diagram, there are a few important key points to understand about t
128128
- An important differentiator is that Cloudflare utilizes one global network and runs every service on every server in every Cloudflare data center, thus providing end users the closest proximity to Cloudflare’s services, with the highest scale, resiliency, and performance.
129129
- Cloudflare is a reverse proxy, meaning it receives requests from clients and proxies the requests back to the customer’s origin servers. Thus, every request traverses through Cloudflare’s network before reaching the customer’s network. Since Cloudflare has hardened and protected its infrastructure at the edge (ingress), all customers are consequently also protected from infrastructure-level and volumetric DDoS attacks. Requests and traffic must go through the protected Cloudflare network before reaching the customer’s origin server.
130130
- The Cloudflare CDN leverages the Cloudflare global anycast network. Thus the incoming request is routed to and answered by the node closest to the user.
131-
- The inherent benefits of anycast are decreased latency, network resiliency, higher availability, and increased security due to larger surface area for absorbing both legitimate traffic loads and DDoS attacks. Cloudflare’s global anycast network spans [hundreds of cities worldwide](https://www.cloudflare.com/network/), reaching 95% of the world’s Internet-connected population within 50 milliseconds while providing over 280 Tbps of network capacity and DDoS protection capability.
131+
- The inherent benefits of anycast are decreased latency, network resiliency, higher availability, and increased security due to larger surface area for absorbing both legitimate traffic loads and DDoS attacks. Cloudflare’s global anycast network spans [hundreds of cities worldwide](https://www.cloudflare.com/network/), reaching 95% of the world’s Internet-connected population within 50 milliseconds while providing <PublicStats id="total_bandwidth" /> and DDoS protection capability.
132132
- Edge nodes within the Cloudflare network cache content from the origin server and are able to respond to requests via a cached copy. Cloudflare also provides [DNS](/dns/), [DDoS protection](/ddos-protection/), [WAF](/waf/), and other performance, reliability, and security services using the same edge architecture.
133133
- [Argo](/argo-smart-routing/) uses optimized routing and caching technology across the Cloudflare network to deliver responses to users more quickly, reliably, and securely. Argo includes Smart Routing and [Tiered Cache](/cache/how-to/tiered-cache/). Cloudflare leverages Argo to provide an enhanced CDN solution.
134134

src/content/docs/reference-architecture/architectures/load-balancing.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ sidebar:
99
updated: 2024-02-26
1010
---
1111

12-
import { Render } from "~/components";
12+
import { Render, PublicStats } from "~/components";
1313

1414
## Introduction
1515

@@ -21,7 +21,7 @@ Cloudflare Load Balancing is a SaaS offering that allows organizations to host a
2121
- Adapting to changing traffic demands and ensuring the infrastructure can accommodate growth.
2222
- Helping applications and services resist Distributed Denial of Service (DDoS) attacks.
2323

24-
Cloudflare Load Balancing is built on Cloudflare’s connectivity cloud, ​​a unified, intelligent platform of programmable cloud-native services that enable secure any-to-any connectivity between all networks (enterprise and Internet), cloud environments, applications, and users. It is one of the largest global networks, with data centers spanning more than 310 cities in over 120 countries and interconnection with over 13,000 other networks. It also has a greater presence in core Internet exchanges than many other large technology companies.
24+
Cloudflare Load Balancing is built on Cloudflare’s connectivity cloud, ​​a unified, intelligent platform of programmable cloud-native services that enable secure any-to-any connectivity between all networks (enterprise and Internet), cloud environments, applications, and users. It is one of the largest global networks, with data centers spanning <PublicStats id="data_center_cities" /> and interconnection with <PublicStats id="network_peers" />. It also has a greater presence in core Internet exchanges than many other large technology companies.
2525

2626
As a result, Cloudflare operates within \~50 ms of \~95% of the world’s Internet-connected population. And since all Cloudflare services are designed to run across every network location, all requests are routed, inspected, and filtered close to their source, resulting in strong performance and consistent user experiences.
2727

@@ -158,7 +158,7 @@ Cloudflare has offered cloud-based GTM since 2016 and started adding Private Net
158158

159159
### Inherent advantages in the Cloudflare architecture
160160

161-
Cloudflare Load Balancing is built on Cloudflare’s connectivity cloud, ​​a unified, intelligent platform of programmable cloud-native services that enable any-to-any connectivity between all networks (enterprise and Internet), cloud environments, applications, and users. It is one of the largest global networks, with data centers spanning more than 310 cities in over 120 countries and interconnection with over 13,000 other networks. It also has a greater presence in core Internet exchanges than many other large technology companies.
161+
Cloudflare Load Balancing is built on Cloudflare’s connectivity cloud, ​​a unified, intelligent platform of programmable cloud-native services that enable any-to-any connectivity between all networks (enterprise and Internet), cloud environments, applications, and users. It is one of the largest global networks, with data centers spanning <PublicStats id="data_center_cities" /> and interconnection with <PublicStats id="network_peers" />. It also has a greater presence in core Internet exchanges than many other large technology companies.
162162

163163
As a result, Cloudflare operates within \~50 ms of \~95% of the world’s Internet-connected population. And since all Cloudflare services are designed to run across every network location, all traffic is connected, inspected, and filtered close to the source for the best performance and consistent user experience.
164164

@@ -771,7 +771,7 @@ Cloudflare offers additional security layers that can be used in conjunction wit
771771

772772
## Summary
773773

774-
The Cloudflare global anycast network is a powerful platform for load balancing. A load balancing configuration in Cloudflare is accessible in over 310 cities across the world and has virtually unlimited capacity and bandwidth.
774+
The Cloudflare global anycast network is a powerful platform for load balancing. A load balancing configuration in Cloudflare is accessible in <PublicStats id="data_center_cities" /> across the world and has virtually unlimited capacity and bandwidth.
775775

776776
These load balancers operate within approximately 50ms of about 95% of the Internet-connected population, including endpoints that allow Cloudflare Load Balancers to perform both GTM and Private Network Load Balancing. Cloudflare now combines these two distinct load balancing concepts into a single load balancer. This helps enable organizations to steer traffic to geographically-relevant data centers, then select the proper endpoint to handle the request.
777777

src/content/docs/reference-architecture/architectures/sase.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ sidebar:
1818
updated: 2024-09-07
1919
---
2020

21-
import { Render } from "~/components";
21+
import { Render, PublicStats } from "~/components";
2222

2323
Download a [PDF version](/reference-architecture/static/cloudflare-evolving-to-a-sase-architecture.pdf) of this reference architecture.
2424

@@ -31,7 +31,7 @@ Cloudflare One is a secure access service edge (SASE) platform that protects ent
3131
- Protecting data in order to comply with regulations and prevent leaks
3232
- Simplifying connectivity across offices, data centers, and cloud environments
3333

34-
Cloudflare One is built on Cloudflare's [connectivity cloud](https://www.cloudflare.com/connectivity-cloud/), ​​a unified, intelligent platform of programmable cloud-native services that enable any-to-any connectivity between all networks (enterprise and Internet), cloud environments, applications, and users. It is one of the [largest global networks](https://www.cloudflare.com/network/), with data centers spanning [hundreds of cities worldwide](https://www.cloudflare.com/network/) and interconnection with over 12,500 other networks. It also has a greater presence in [core Internet exchanges](https://bgp.he.net/report/exchanges#_participants) than many other large technology companies.
34+
Cloudflare One is built on Cloudflare's [connectivity cloud](https://www.cloudflare.com/connectivity-cloud/), ​​a unified, intelligent platform of programmable cloud-native services that enable any-to-any connectivity between all networks (enterprise and Internet), cloud environments, applications, and users. It is one of the [largest global networks](https://www.cloudflare.com/network/), with data centers spanning [hundreds of cities worldwide](https://www.cloudflare.com/network/) and interconnection with <PublicStats id="network_peers" />. It also has a greater presence in [core Internet exchanges](https://bgp.he.net/report/exchanges#_participants) than many other large technology companies.
3535

3636
As a result, Cloudflare operates within \~50 ms of \~95% of the world's Internet-connected population. And since all Cloudflare services are designed to run across every network location, all traffic is connected, inspected, and filtered close to the source for the best performance and consistent user experience.
3737

@@ -680,6 +680,6 @@ It's worth noting that many of the capabilities described in this document can b
680680
| Remote Browser Isolation | [Understanding browser isolation](/cloudflare-one/policies/browser-isolation/) |
681681
| API-Driven CASB | [Scanning SaaS applications](/cloudflare-one/applications/casb/) |
682682
| Email Security | [Understanding Cloudflare Email Security](/email-security/) |
683-
| Replacing your VPN | [Using Cloudflare to replace your VPN](/learning-paths/replace-vpn/concepts/) |
683+
| Replacing your VPN | [Using Cloudflare to replace your VPN](/learning-paths/replace-vpn/concepts/) |
684684

685685
If you would like to discuss your SASE requirements in greater detail and connect with one of our architects, please visit [https://www.cloudflare.com/cloudflare-one/](https://www.cloudflare.com/cloudflare-one/) and request a consultation.

src/content/docs/reference-architecture/architectures/security.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ description: This document provides insight into how this network and platform
3333
updated: 2024-06-19
3434
---
3535

36-
import { Render } from "~/components";
36+
import { Render, PublicStats } from "~/components";
3737

3838
## Introduction
3939

@@ -58,7 +58,7 @@ To build a stronger baseline understanding of Cloudflare, we recommend the follo
5858

5959
## Secure global network
6060

61-
Any cloud security solution needs to be fast and always available. Our network protects over 20% of Internet web properties, operates in over 320 cities, and is 50 ms away from 95% of the Internet-connected population. Each server in each data center runs every service, so that traffic is inspected in one pass and acted upon close to the end user. These servers are connected together by over 13,000 network peering relationships with a total network capacity of 280 Tbps. Cloudflare’s network is also connected to [every Internet exchange](https://bgp.he.net/report/exchanges#_participants) (more than Microsoft, AWS, and Google) to ensure that we are able to peer traffic from any part of the Internet.
61+
Any cloud security solution needs to be fast and always available. Our network protects over 20% of Internet web properties, operates in <PublicStats id="data_center_cities" />, and is 50 ms away from 95% of the Internet-connected population. Each server in each data center runs every service, so that traffic is inspected in one pass and acted upon close to the end user. These servers are connected together by <PublicStats id="network_peers" /> with <PublicStats id="total_bandwidth" />. Cloudflare’s network is also connected to [every Internet exchange](https://bgp.he.net/report/exchanges#_participants) (more than Microsoft, AWS, and Google) to ensure that we are able to peer traffic from any part of the Internet.
6262

6363
With millions of customers using Cloudflare, the network serves over [57 million HTTP requests](https://radar.cloudflare.com/traffic) per second on average, with more than 77 million HTTP requests per second at peak. As we analyze all this traffic, we detect and block an average of [209 billion cyber threats each day](https://radar.cloudflare.com/security-and-attacks). This network runs at this massive scale to ensure that customers using our security products experience low latency, access to high bandwidth, and a level of reliability that ensures the ongoing security of their business. (Note metrics are correct as of June 2024.)
6464

@@ -461,7 +461,7 @@ If you build and host your own SaaS product offering, then [Cloudflare for SaaS]
461461

462462
[Magic Transit](/magic-transit/) protects entire IP subnets from DDoS attacks, providing for sub-second threat detection while also accelerating network traffic. It uses Cloudflare’s global network to mitigate attacks, employing standards-based networking protocols like BGP, GRE, and IPsec for routing and encapsulation.
463463

464-
All network assets, whether on-premises or in private or public-hosted cloud environments, can easily be protected by sitting behind and being advertised from the Cloudflare network providing for over 280 Tbps of network capacity.
464+
All network assets, whether on-premises or in private or public-hosted cloud environments, can easily be protected by sitting behind and being advertised from the Cloudflare network providing <PublicStats id="total_bandwidth" />.
465465

466466
![Magic Transit can secure your private network links.](~/assets/images/reference-architecture/security/security-ref-arch-16.svg)
467467

0 commit comments

Comments
 (0)