Class ProcessMetricPoint
Inheritance
System.Object
ProcessMetricPoint
Namespace: MediaBrowser.Model.ProcessRun.Metrics
Assembly: MediaBrowser.Model.dll
Syntax
public class ProcessMetricPoint
Constructors
ProcessMetricPoint(TimeSpan, Double, Double, Double)
Initializes a new instance of the System.Object class.
Declaration
public ProcessMetricPoint(TimeSpan time, double cpuPercent, double virtualMemory, double workingSet)
Parameters
Type | Name | Description |
---|---|---|
System.TimeSpan | time | The time. |
System.Double | cpuPercent | The cpu percent. |
System.Double | virtualMemory | The virtual memory. |
System.Double | workingSet | The working set. |
Properties
CpuPercent
Gets the cpu percent.
Declaration
public double CpuPercent { get; }
Property Value
Type | Description |
---|---|
System.Double | The cpu percent. |
Time
Gets the time.
Declaration
public TimeSpan Time { get; }
Property Value
Type | Description |
---|---|
System.TimeSpan | The time. |
VirtualMemory
Gets the virtual memory.
Declaration
public double VirtualMemory { get; }
Property Value
Type | Description |
---|---|
System.Double | The virtual memory. |
WorkingSet
Gets the working set.
Declaration
public double WorkingSet { get; }
Property Value
Type | Description |
---|---|
System.Double | The working set. |