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

Added the gc-committed counter #286

Merged
merged 1 commit into from
Apr 10, 2021
Merged
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
11 changes: 11 additions & 0 deletions src/Microsoft.Crank.Controller/default.config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ counters:
measurement: runtime-counter/gc-heap-size
description: Total heap size reported by the GC (MB)

- name: gc-committed
measurement: runtime-counter/gc-committed
description: Size of committed memory by the GC (MB)

- name: gen-0-gc-count
measurement: runtime-counter/gen-0-gc-count
description: Number of Gen 0 GCs / sec
Expand Down Expand Up @@ -336,6 +340,13 @@ results: # creates results from measurements
aggregate: max
reduce: max

- name: runtime-counter/gc-committed
measurement: runtime-counter/gc-committed
description: Size of committed memory by the GC (MB)
format: n0
aggregate: max
reduce: max

- name: runtime-counter/gen-0-gc-count
measurement: runtime-counter/gen-0-gc-count
description: Max Number of Gen 0 GCs / sec
Expand Down