Skip to content
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

Merged

Conversation

q-uint
Copy link
Contributor

@q-uint q-uint commented Feb 13, 2025

This PR introduces memory_metrics to canister_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

@dsarlis dsarlis added the interface-spec Changes to the IC Interface Specification label Feb 13, 2025
@q-uint q-uint marked this pull request as ready for review February 13, 2025 08:40
@q-uint q-uint requested a review from a team as a code owner February 13, 2025 08:40
@dsarlis dsarlis self-requested a review February 13, 2025 08:41
@q-uint q-uint force-pushed the feature/quint/memory-size-details branch from c5d65e5 to a6540e6 Compare February 13, 2025 08:45
@dsarlis dsarlis added interface-spec Changes to the IC Interface Specification and removed interface-spec Changes to the IC Interface Specification labels Feb 13, 2025
dsarlis added a commit that referenced this pull request Feb 13, 2025
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.
dsarlis added a commit that referenced this pull request Feb 14, 2025
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.
@dsarlis dsarlis added interface-spec Changes to the IC Interface Specification and removed interface-spec Changes to the IC Interface Specification labels Feb 14, 2025
@dsarlis dsarlis removed the interface-spec Changes to the IC Interface Specification label Feb 17, 2025
@github-actions github-actions bot added the interface-spec Changes to the IC Interface Specification label Feb 17, 2025
dsarlis
dsarlis previously approved these changes Feb 17, 2025
@dragoljub-duric dragoljub-duric self-requested a review February 17, 2025 08:56
@github-actions github-actions bot dismissed stale reviews from dragoljub-duric, dsarlis, and dragoljub-duric February 17, 2025 11:58

Review dismissed by automation script.

dsarlis
dsarlis previously approved these changes Feb 21, 2025
@github-actions github-actions bot dismissed dsarlis’s stale review February 21, 2025 14:30

Review dismissed by automation script.

dsarlis
dsarlis previously approved these changes Feb 21, 2025
q-uint added a commit to CycleOperators/ic that referenced this pull request Feb 25, 2025
- 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.
q-uint added a commit to CycleOperators/ic that referenced this pull request Feb 25, 2025
- 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.
Dfinity-Bjoern
Dfinity-Bjoern previously approved these changes Feb 25, 2025
Copy link
Member

@Dfinity-Bjoern Dfinity-Bjoern left a 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.

dsarlis pushed a commit to dfinity/ic that referenced this pull request Feb 25, 2025
- 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.
github-merge-queue bot pushed a commit to dfinity/ic that referenced this pull request Feb 25, 2025
)

## 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]>
@mraszyk mraszyk enabled auto-merge (squash) March 10, 2025 16:30
Copy link
Contributor

@mraszyk mraszyk left a 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.

@github-actions github-actions bot dismissed stale reviews from dsarlis and Dfinity-Bjoern March 10, 2025 19:10

Review dismissed by automation script.

auto-merge was automatically disabled March 10, 2025 19:11

Head branch was pushed to by a user without write access

@q-uint q-uint requested a review from mraszyk March 10, 2025 19:17
@mraszyk mraszyk enabled auto-merge (squash) March 10, 2025 19:57
@mraszyk mraszyk merged commit 39bbfcb into dfinity:master Mar 10, 2025
9 checks passed
ggreif added a commit to dfinity/motoko that referenced this pull request Mar 15, 2025
ggreif added a commit to dfinity/motoko that referenced this pull request Mar 15, 2025
mergify bot pushed a commit to dfinity/motoko that referenced this pull request Mar 17, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
external-contributor interface-spec Changes to the IC Interface Specification
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants