Search Results for

    Show / Hide Table of Contents

    Class JobMetrics

    Represents a single job metric point.

    Inheritance
    object
    JobMetrics
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    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
    In this article
    Back to top Version 6.1.0.31rc