Show / Hide Table of Contents

Class PoolMetrics

A collection of metrics related to a particular pool.

Inheritance
object
PoolMetrics
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataflowService.Models
Assembly: OCI.DotNetSDK.Dataflow.dll
Syntax
public class PoolMetrics

Properties

ActiveRunsCount

Declaration
[JsonProperty(PropertyName = "activeRunsCount")]
public long? ActiveRunsCount { get; set; }
Property Value
Type Description
long?

The number of runs that are currently running that are using this pool.

ActivelyUsedNodeCount

Declaration
[JsonProperty(PropertyName = "activelyUsedNodeCount")]
public List<NodeCount> ActivelyUsedNodeCount { get; set; }
Property Value
Type Description
List<NodeCount>

A count of the nodes that are currently being used for each shape in this pool.

TimeLastMetricsUpdated

Declaration
[JsonProperty(PropertyName = "timeLastMetricsUpdated")]
public DateTime? TimeLastMetricsUpdated { get; set; }
Property Value
Type Description
DateTime?

The last time the mertics were updated for this.

TimeLastStarted

Declaration
[JsonProperty(PropertyName = "timeLastStarted")]
public DateTime? TimeLastStarted { get; set; }
Property Value
Type Description
DateTime?

The last time this pool was started.

TimeLastStopped

Declaration
[JsonProperty(PropertyName = "timeLastStopped")]
public DateTime? TimeLastStopped { get; set; }
Property Value
Type Description
DateTime?

The last time this pool was stopped.

TimeLastUsed

Declaration
[JsonProperty(PropertyName = "timeLastUsed")]
public DateTime? TimeLastUsed { get; set; }
Property Value
Type Description
DateTime?

The last time a run used this pool.

In this article
Back to top