Class JobMetrics
Represents a single job metric point.
Inherited Members
Namespace: Noxum.Nova.Cms.Client
Assembly: Noxum.Nova.Cms.Client.dll
Syntax
public class JobMetrics
Properties
Cpu
The CPU usage. e.g., 0.5 = 50%
Declaration
[JsonPropertyName("cpu")]
public double Cpu { get; set; }
Property Value
| Type | Description |
|---|---|
| double |
Memory
The memory usage in MiB. 1 MiB = 1,048,576 bytes (2^20 bytes)
Declaration
[JsonPropertyName("memory")]
public double Memory { get; set; }
Property Value
| Type | Description |
|---|---|
| double |
UpTime
The uptime of the process, in seconds
Declaration
[JsonPropertyName("upTime")]
public double UpTime { get; set; }
Property Value
| Type | Description |
|---|---|
| double |