From 2f23db8d850b4140ad1803cc5dbedf5ee8be7273 Mon Sep 17 00:00:00 2001 From: alexdenfordskyboxlabs <103449886+AlexDenfordSkyboxLabs@users.noreply.github.com> Date: Mon, 31 Aug 2026 18:33:41 -0700 Subject: [PATCH 1/2] Update README.md --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 11b5b24..cb2e0c4 100644 --- a/README.md +++ b/README.md @@ -182,9 +182,9 @@ Add shortcuts for your favorite Minecraft commands. After setting a local path for saving captures, use `Start Profiler` and `Stop Profiler` to create performance captures of your actively running add-on. #### Diagnostics Window -When attatched to a game server running Minecraft 1.21.10 or above, the debugger can display high level statistics to help diagnost performance issues. +When attatched to a game server running Minecraft 1.21.10 or above, the debugger can display high level statistics to help diagnose performance issues. -To open this view, run the command `Minecraft Diagnostics: Show Live Stats` or click the sidebar icon for the exension ![image](/icons/creeper_icon.png) and click the "Show Live Diagnostics" button. +To open this view, run the command `Minecraft Diagnostics: Show Live Stats` or click the sidebar icon for the extension ![image](/icons/creeper_icon.png) and click the "Show Live Diagnostics" button. The server statistics it displays currently are: - Number of entities in the level (all dimensions) @@ -201,6 +201,11 @@ The server statistics it displays currently are: Example diagnostics view ![image](https://github.com/Mojang/minecraft-debugger/assets/1000311/fcafd4da-6017-4348-86df-571974b50012) +We now also support pushing your own custom live diagnostics into the debugger from Minecraft via scripting. +The API is available [here](https://learn.microsoft.com/en-us/minecraft/creator/scriptapi/minecraft/debug-utilities/diagnosticsmanager?view=minecraft-bedrock-experimental) inside the `@minecraft/debug-utilities` module. +Please see examples and further documentation [here](https://learn.microsoft.com/en-us/minecraft/creator/documents/scripting/developer-tools?view=minecraft-bedrock-stable). + + ## Feedback From bc09337e0a732bce8cb9a5e500a0d441005ccd0e Mon Sep 17 00:00:00 2001 From: alexdenfordskyboxlabs <103449886+AlexDenfordSkyboxLabs@users.noreply.github.com> Date: Thu, 10 Sep 2026 12:17:35 -0700 Subject: [PATCH 2/2] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index cb2e0c4..9d5dfaf 100644 --- a/README.md +++ b/README.md @@ -196,6 +196,11 @@ The server statistics it displays currently are: - Network packet bandwidth usage - Network packet packet count (all and specific packet counts) - Entity handle counts per scripting pack (useful for detecting handle leaks) +- Client side performance data (FPS, memory, entity systems, CPU profiling) + +NOTE: Client side performance data requires the "Enabled client diagnostics" creator setting to be enabled in Minecraft: +image + Example diagnostics view