Skip to content

Commit

Permalink
Fixing lint failures
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejgordon committed Aug 5, 2024
1 parent 54833c4 commit c6b3628
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ body:
- area:client
- area:cloud
- area:cloudevents
- area:clr
- area:code
- area:container
- area:cpu
Expand Down
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/change_proposal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ body:
- area:client
- area:cloud
- area:cloudevents
- area:clr
- area:code
- area:container
- area:cpu
Expand Down
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/new-conventions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ body:
- area:client
- area:cloud
- area:cloudevents
- area:clr
- area:code
- area:container
- area:cpu
Expand Down
14 changes: 7 additions & 7 deletions model/metrics/clr-metrics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ groups:
- id: metric.clr.gc.collections.count
type: metric
metric_name: clr.gc.collections.count
brief: >
brief: >
Number of garbage collections that have occurred since the process started.
instrument: counter
unit: "{collection}"
Expand All @@ -13,7 +13,7 @@ groups:
- id: metric.clr.gc.objects.size
type: metric
metric_name: clr.gc.objects.size
brief: >
brief: >
The number of bytes currently allocated on the managed GC heap.
Fragmentation and other GC committed memory pools are excluded.
instrument: updowncounter
Expand All @@ -22,7 +22,7 @@ groups:
- id: metric.clr.gc.allocations.size
type: metric
metric_name: clr.gc.allocations.size
brief: >
brief: >
The number of bytes allocated on the managed GC heap since the process
started. The returned value does not include any native allocations.
instrument: counter
Expand All @@ -31,7 +31,7 @@ groups:
- id: metric.clr.gc.committed_memory.size
type: metric
metric_name: clr.gc.committed_memory.size
brief: >
brief: >
The amount of committed virtual memory for the managed GC heap, as
observed during the latest garbage collection.
note: >
Expand Down Expand Up @@ -116,7 +116,7 @@ groups:
- id: metric.clr.thread_pool.work_items.count
type: metric
metric_name: clr.thread_pool.work_items.count
brief: >
brief: >
The number of work items that the thread pool has processed since
the process start.
instrument: counter
Expand All @@ -125,7 +125,7 @@ groups:
- id: metric.clr.thread_pool.queue.length
type: metric
metric_name: clr.thread_pool.queue.length
brief: >
brief: >
The number of work items that are currently queued to be processed by the
thread pool.
instrument: updowncounter
Expand All @@ -151,4 +151,4 @@ groups:
brief: "Count of exceptions that have been thrown in managed code."
instrument: counter
unit: "{exception}"
stability: experimental
stability: experimental
2 changes: 1 addition & 1 deletion model/registry/clr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ groups:
stability: experimental
type: string
brief: Name of the garbage collector heap generation.
examples: ["gen0", "gen1", "gen2", "loh", "poh"]
examples: ["gen0", "gen1", "gen2", "loh", "poh"]

0 comments on commit c6b3628

Please sign in to comment.