-
Notifications
You must be signed in to change notification settings - Fork 491
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
Add memory_metrics to canister_status. #5240
Add memory_metrics to canister_status. #5240
Conversation
c5d65e5
to
a6540e6
Compare
When a PR is submitted from a fork from an external contributor, the workflow that attempts to add the `interface-spec` label fails, e.g. on this [PR](#5240). According to actions/labeler#36 (comment) this should be fixed by changing the type of action that triggers the workflow from `pull_request` to `pull_request_target` as this adds the necessary write permissions through a github token.
When a PR is submitted from a fork from an external contributor, the workflow that attempts to add the `interface-spec` label fails, e.g. on this [PR](#5240). According to actions/labeler#36 (comment) this should be fixed by changing the type of action that triggers the workflow from `pull_request` to `pull_request_target` as this adds the necessary write permissions through a github token.
Review dismissed by automation script.
Review dismissed by automation script.
- Introduced new memory metrics fields in `CanisterStatusResultV2`, including: - `wasm_memory_size` - `stable_memory_size` - `global_memory_size` - `wasm_binary_size` - `custom_sections_size` - `canister_history_size` - `wasm_chunk_store_size` - `snapshots_size` - Updated `CanisterManager` and `CanisterState` to compute and track these new metrics. - Refactored `ExecutionState` to provide individual methods for retrieving specific memory usage values. - Modified tests to validate the new memory metrics in canister status responses. This change improves visibility into canister memory consumption, aiding debugging and resource management. Refer to [PR portal#5240](dfinity/portal#5240) for more details.
- Introduced new memory metrics fields in `CanisterStatusResultV2`, including: - `wasm_memory_size` - `stable_memory_size` - `global_memory_size` - `wasm_binary_size` - `custom_sections_size` - `canister_history_size` - `wasm_chunk_store_size` - `snapshots_size` - Updated `CanisterManager` and `CanisterState` to compute and track these new metrics. - Refactored `ExecutionState` to provide individual methods for retrieving specific memory usage values. - Modified tests to validate the new memory metrics in canister status responses. This change improves visibility into canister memory consumption, aiding debugging and resource management. Refer to [PR portal#5240](dfinity/portal#5240) for more details.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please merge in coordination with the roll-out of the replica version to prod.
- Introduced new memory metrics fields in `CanisterStatusResultV2`, including: - `wasm_memory_size` - `stable_memory_size` - `global_memory_size` - `wasm_binary_size` - `custom_sections_size` - `canister_history_size` - `wasm_chunk_store_size` - `snapshots_size` - Updated `CanisterManager` and `CanisterState` to compute and track these new metrics. - Refactored `ExecutionState` to provide individual methods for retrieving specific memory usage values. - Modified tests to validate the new memory metrics in canister status responses. This change improves visibility into canister memory consumption, aiding debugging and resource management. Refer to [PR portal#5240](dfinity/portal#5240) for more details.
) ## Acknowledgements This contribution was made by @q-uint and @ByronBecker and was reviewed by me in their [fork](https://github.com/CycleOperators/ic) of the `ic` repo. I'm transferring over the two commits implementing the change on behalf of them as the `ic` repo does not (formally) accept external contributions yet. ## Changes included - Introduced new memory metrics fields in `CanisterStatusResultV2`, including: - `wasm_memory_size` - `stable_memory_size` - `global_memory_size` - `wasm_binary_size` - `custom_sections_size` - `canister_history_size` - `wasm_chunk_store_size` - `snapshots_size` - Updated `CanisterManager` and `CanisterState` to compute and track these new metrics. - Refactored `ExecutionState` to provide individual methods for retrieving specific memory usage values. - Modified tests to validate the new memory metrics in canister status responses. This change improves visibility into canister memory consumption, aiding debugging and resource management. Refer to [PR portal#5240](dfinity/portal#5240) for more details. ## Original PRs for reference - Main change: CycleOperators#1 - Lint fixes: CycleOperators#2 --------- Co-authored-by: Quint Daenen <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@q-uint Could you please update the changelog at docs/references/_attachments/interface-spec-changelog.md
: e.g.,
### 0.34.0 (2025-03-07) {#0_34_0}
* New canister method `canister_on_low_wasm_memory` invoked when the canister is low on main memory according to a new `wasm_memory_threshold` in canister settings.
* New system APIs `ic0.cost_call`, `ic0.cost_create_canister`, `ic0.cost_http_request`, `ic0.cost_sign_with_ecdsa`, `ic0.cost_sign_with_schnorr`, and `ic0.cost_vetkd_derive_encrypted_key` for cycles cost calculation.
* New field `memory_metrics` providing detailed metrics on the memory consumption of a canister in the response of the management canister's `canister_status` endpoint.
Review dismissed by automation script.
Head branch was pushed to by a user without write access
See: dfinity/portal#5240. I have also filed krpeacock/ic-management-canister#1.
This PR introduces
memory_metrics
tocanister_status
, providing a more detailed breakdown of canister memory usage. This enhancement aims to improve visibility into memory consumption, aiding in better monitoring and debugging.Tagging relevant contributors:
@ByronBecker (@CycleOperators)
@dsarlis & @mraszyk