-
Notifications
You must be signed in to change notification settings - Fork 9.8k
DO Data Studio docs & changelog #25837
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+66
−0
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
65d2290
DO Data Studio docs & changelog
vy-ton c9827f0
fixup
vy-ton 3abf13e
fix date
vy-ton 97a0e1b
more info
vy-ton b2b953b
PCX review
Oxyjun 5c5e3e0
Update 2025-10-16-durable-objects-data-studio.mdx
vy-ton 91d91bf
Update 2025-10-16-durable-objects-data-studio.mdx
vy-ton File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions
22
src/content/changelog/durable-objects/2025-10-16-durable-objects-data-studio.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| --- | ||
| title: View and edit Durable Object data in UI with Data Studio (Beta) | ||
| description: Access Durable Objects stored data via Cloudflare dashboard. | ||
| products: | ||
| - durable-objects | ||
| - workers | ||
| date: 2025-10-16 | ||
| --- | ||
|
|
||
| import { DashButton } from "~/components"; | ||
|
|
||
|  | ||
|
|
||
| You can now view and write to each Durable Object's storage using a UI editor on the Cloudflare dashboard. Only Durable Objects using [SQLite storage](/durable-objects/best-practices/access-durable-objects-storage/#create-sqlite-backed-durable-object-class) can use Data Studio. | ||
|
|
||
| <DashButton url="/?to=/:account/workers/durable-objects" /> | ||
|
|
||
| Data Studio unlocks easier data access with Durable Objects for prototyping application data models to debugging production storage usage. Before, querying your Durable Objects data required deploying a Worker. | ||
|
|
||
| To access a Durable Object, you can provide an object's unique name or ID generated by Cloudflare. Data Studio requires you to have at least the `Workers Platform Admin` role, and all queries are captured with audit logging for your security and compliance needs. Queries executed by Data Studio send requests to your remote, deployed objects and incur normal usage billing. | ||
|
|
||
| To learn more, visit the Data Studio [documentation](/durable-objects/observability/data-studio/). If you have feedback or suggestions for the new Data Studio, please share your experience on [Discord](https://discord.com/channels/595317990191398933/773219443911819284) |
40 changes: 40 additions & 0 deletions
40
src/content/docs/durable-objects/observability/data-studio.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| --- | ||
| title: Data Studio | ||
| pcx_content_type: concept | ||
| sidebar: | ||
| order: 7 | ||
| badge: Beta | ||
| --- | ||
|
|
||
| import { DashButton, Steps } from "~/components"; | ||
|
|
||
| Each Durable Object can access private storage using [Storage API](/durable-objects/api/sqlite-storage-api/) available on `ctx.storage`. To view and write to an object's stored data, you can use Durable Objects Data Studio as a UI editor available on the Cloudflare dashboard. | ||
|
|
||
| :::note[Data Studio only supported for SQLite-backed objects] | ||
|
|
||
| You can only use Data Studio to access data for [SQLite-backed Durable Objects](/durable-objects/best-practices/access-durable-objects-storage/#create-sqlite-backed-durable-object-class). | ||
|
|
||
| At the moment, you can only read/write data persisted using the [SQL API](/durable-objects/api/sqlite-storage-api/#sql-api). Key-value data persisted using the KV API will be made read-only in the future. | ||
| ::: | ||
|
|
||
| ## View Data Studio | ||
|
|
||
| You need to have at least the `Workers Platform Admin` [role](/fundamentals/manage-members/roles/) to access Data Studio. | ||
|
|
||
| <Steps> | ||
| 1. In the Cloudflare dashboard, go to the **Durable Objects** page. | ||
|
|
||
| <DashButton url="/?to=/:account/workers/durable-objects" /> | ||
| 2. Select an existing Durable Object namespace. | ||
| 3. Select the **Data Studio** button. | ||
| 4. Provide a Durable Object identifier, either a user-provided [unique name](/durable-objects/api/namespace/#getbyname) or a Cloudflare-generated [Durable Object ID](/durable-objects/api/id/). | ||
| </Steps> | ||
|
|
||
| - Queries executed by Data Studio send requests to your remote, deployed objects and incur [usage billing](/durable-objects/platform/pricing/) for requests, duration, rows read, and rows written. You should use Data Studio as you would handle your production, running objects. | ||
| - In the **Query** tab when running all statements, each SQL statement is sent as a separate Durable Object request. | ||
|
|
||
| ## Audit logging | ||
|
|
||
| All queries issued by the Data Studio are logged with [audit logging v1](/fundamentals/account/account-security/review-audit-logs/) for your security and compliance needs. | ||
|
|
||
| - Each query emits two audit logs, a `query executed` action and a `query completed` action indicating query success or failure. `query_id` in the log event can be used to correlate the two events per query. | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.