Skip to content

Commit 7f7318b

Browse files
committed
Catching DO docs
1 parent 070fbd3 commit 7f7318b

File tree

5 files changed

+24
-20
lines changed

5 files changed

+24
-20
lines changed

src/content/docs/d1/best-practices/read-replication.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sidebar:
66
badge: Beta
77
---
88

9-
import { GlossaryTooltip, Details, GitHubCode, APIRequest, Tabs, TabItem, TypeScriptExample } from "~/components"
9+
import { GlossaryTooltip, Details, GitHubCode, APIRequest, Tabs, TabItem, TypeScriptExample, DashButton } from "~/components"
1010

1111
D1 read replication can lower latency for read queries and scale read throughput by adding read-only database copies, called read replicas, across regions globally closer to clients.
1212

@@ -69,7 +69,7 @@ D1 read replication achieves this by attaching a <GlossaryTooltip term="bookmark
6969

7070
Read replication can be enabled at the database level in the Cloudflare dashboard. Check **Settings** for your D1 database to view if read replication is enabled.
7171

72-
1. Go to [**Workers & Pages** > **D1**](https://dash.cloudflare.com/?to=/:account/workers/d1).
72+
1. <DashButton url="/?to=/:account/workers/d1" />.
7373
2. Select an existing database > **Settings** > **Enable Read Replication**.
7474

7575
### Start a session without constraints
@@ -408,7 +408,7 @@ To see the impact of read replication and check the how D1 requests are processe
408408
- The `meta` object within the [`D1Result`](/d1/worker-api/return-object/#d1result) return object, which includes new fields:
409409
- `served_by_region`
410410
- `served_by_primary`
411-
- The [Cloudflare dashboard](https://dash.cloudflare.com/?to=/:account/workers/d1), where you can view your database metrics breakdown by region that processed D1 requests.
411+
- The Cloudflare dashboard, where you can view your database metrics breakdown by region that processed D1 requests.
412412

413413
## Pricing
414414
D1 read replication is built into D1, so you don’t pay extra storage or compute costs for read replicas. You incur the exact same D1 [usage billing](/d1/platform/pricing/#billing-metrics) with or without replicas, based on `rows_read` and `rows_written` by your queries.

src/content/docs/durable-objects/get-started.mdx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import {
1212
PackageManagers,
1313
WranglerConfig,
1414
TypeScriptExample,
15+
DashButton
1516
} from "~/components";
1617

1718
This guide will instruct you through:
@@ -304,7 +305,9 @@ To deploy your Durable Object Worker:
304305
npx wrangler deploy
305306
```
306307

307-
Once deployed, you should be able to see your newly created Durable Object Worker on the [Cloudflare dashboard](https://dash.cloudflare.com/), **Workers & Pages** > **Overview**.
308+
Once deployed, you should be able to see your newly created Durable Object Worker on the Cloudflare dashboard.
309+
310+
<DashButton url="/?to=/:account/workers-and-pages" />
308311

309312
Preview your Durable Object Worker at `<YOUR_WORKER>.<YOUR_SUBDOMAIN>.workers.dev`.
310313

src/content/docs/durable-objects/observability/graphql-analytics.mdx

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sidebar:
66

77
---
88

9-
import { GlossaryTooltip } from "~/components";
9+
import { GlossaryTooltip, DashButton } from "~/components";
1010

1111
<GlossaryTooltip term="Durable Object">Durable Objects</GlossaryTooltip> expose analytics for Durable Object namespace-level and request-level metrics.
1212

@@ -21,11 +21,10 @@ A Durable Object namespace is a set of Durable Objects that can be addressed by
2121

2222
Per-namespace analytics for Durable Objects are available in the Cloudflare dashboard. To view current and historical metrics for a namespace:
2323

24-
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com) and select your account.
25-
2. Go to [**Workers & Pages** > **Durable Objects**](https://dash.cloudflare.com/?to=/:account/workers/durable-objects).
26-
3. View account-level Durable Objects usage.
27-
4. Select an existing namespace.
28-
5. Select the **Metrics** tab.
24+
1. <DashButton url="/?to=/:account/workers/durable-objects" />
25+
2. View account-level Durable Objects usage.
26+
3. Select an existing namespace.
27+
4. Select the **Metrics** tab.
2928

3029
You can optionally select a time window to query. This defaults to the last 24 hours.
3130

src/content/docs/durable-objects/reference/environments.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sidebar:
66

77
---
88

9-
import { WranglerConfig } from "~/components";
9+
import { WranglerConfig, DashButton } from "~/components";
1010

1111
Environments provide isolated spaces where your code runs with specific dependencies and configurations. This can be useful for a number of reasons, such as compatibility testing or version management. Using different environments can help with code consistency, testing, and production segregation, which reduces the risk of errors when deploying code.
1212

@@ -81,7 +81,7 @@ KV-backed Durable Objects support remote development using the dashboard playgro
8181

8282
To start remote development:
8383

84-
1. Log in to your Cloudflare dashboard, and go to [**Workers & Pages** > **Overview**](https://dash.cloudflare.com/?to=/:account/workers-and-pages).
84+
1. <DashButton url="/?to=/:account/workers-and-pages" />
8585
2. Select an existing Worker.
8686
3. Select the **Edit code** icon located on the upper-right of the screen.
8787

src/content/docs/hyperdrive/configuration/tls-ssl-certificates-for-hyperdrive.mdx

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sidebar:
77
text: Beta
88
---
99

10-
import { TabItem, Tabs, Render, WranglerConfig } from "~/components";
10+
import { TabItem, Tabs, Render, WranglerConfig, DashButton } from "~/components";
1111

1212
Hyperdrive provides additional ways to secure connectivity to your database. Hyperdrive supports:
1313

@@ -77,10 +77,11 @@ npx wrangler hyperdrive create <NAME_OF_HYPERDRIVE_CONFIG> --connection-string="
7777

7878
From the dashboard, follow these steps to create a Hyperdrive configuration with server certificates:
7979

80-
1. In the [Cloudflare dashboard](https://dash.cloudflare.com/?to=/:account/workers/hyperdrive), navigate to **Storage & Databases > Hyperdrive** and click **Create configuration**.
81-
2. Select **Server certificates**.
82-
3. Specify a SSL mode of **Verify CA** or **Verify full**
83-
4. Select the SSL certificate of the certificate authority (CA) of your database that you have previously uploaded with Wrangler.
80+
1. <DashButton url="/?to=/:account/workers/hyperdrive" />
81+
2. Select **Create configuration**.
82+
3. Select **Server certificates**.
83+
4. Specify a SSL mode of **Verify CA** or **Verify full**
84+
5. Select the SSL certificate of the certificate authority (CA) of your database that you have previously uploaded with Wrangler.
8485

8586
</TabItem>
8687

@@ -138,9 +139,10 @@ npx wrangler hyperdrive create <NAME_OF_HYPERDRIVE_CONFIG> --connection-string="
138139

139140
From the dashboard, follow these steps to create a Hyperdrive configuration with server certificates:
140141

141-
1. In the [Cloudflare dashboard](https://dash.cloudflare.com/?to=/:account/workers/hyperdrive), navigate to **Storage & Databases > Hyperdrive** and click **Create configuration**.
142-
2. Select **Client certificates**.
143-
3. Select the SSL client certificate and private key pair for Hyperdrive to use during the connection setup with your database server.
142+
1. <DashButton url="/?to=/:account/workers/hyperdrive" />
143+
2. Select **Create configuration**.
144+
3. Select **Client certificates**.
145+
4. Select the SSL client certificate and private key pair for Hyperdrive to use during the connection setup with your database server.
144146

145147
</TabItem>
146148

0 commit comments

Comments
 (0)