Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ To opt-in to the new `process.env` behaviour now, add the [`nodejs_compat_popula
// Add "nodejs_compat_populate_process_env" to your compatibility_flags array
"compatibility_flags": ["nodejs_compat", "nodejs_compat_populate_process_env"],
// Rest of your configuration
}
```

</WranglerConfig>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
title: You can now view logs directly in the Durable Objects dashboard
description: View, search and filter logs within the Durable Objects dashboard
date: 2025-09-08
products:
- workers
- durable-objects
---
import { WranglerConfig } from "~/components";


![Logs in Durable Objects dashboard](~/assets/images/workers-observability/2025-09-08-logs-for-durable-objects.png)

[Durable Objects](https://developers.cloudflare.com/durable-objects/) now have a dedicated logging dashboard that makes it easier to debug and monitor your applications.

**With these updates, you can:**
* View logs by clicking into a Durable Object(DO) namespace within the [DO dashboard](https://dash.cloudflare.com/?to=/:account/workers/durable-objects)
* Add filters and search through all DO related log events
* Identify the Durable Object instance ID (displayed as `$workers.durableObjectId`) to understand which specific instance generated the log entry.
![instance ID in DO logs](~/assets/images/workers-observability/2025-09-08-durableobject-id.png)

**To get started:**\
Set the following on the Worker that defines your Durable Object class:

<WranglerConfig>

```jsonc
{
"observability": {
"enabled": true
}
}
```

</WranglerConfig>

Once you make a new deplyoment, navigate to the `Logs` section of any [Durable Object](https://dash.cloudflare.com/?to=/:account/workers/durable-objects) to start debugging.