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

[LiveMetrics] report process metrics CPU Total and Committed Memory #42213

Merged
merged 13 commits into from
Mar 5, 2024
Prev Previous commit
Next Next commit
fix typo
  • Loading branch information
TimothyMothra committed Feb 27, 2024
commit 6d0b95040039998f2f3dffb121d41b6aed5ff6f5
Original file line number Diff line number Diff line change
@@ -118,7 +118,7 @@ public MonitoringDataPoint GetDataPoint()
yield return new Models.MetricPoint
{
Name = LiveMetricConstants.MetricId.MemoryCommittedBytesMetricIdValue,
Value = process.WorkingSet64,
Value = process.PrivateMemorySize64,
Weight = 1
};