Show / Hide Table of Contents

Class HostGpuProcesses

GPU processes metrics, processes using GPUs.

Inheritance
object
HostPerformanceMetricGroup
HostGpuProcesses
Inherited Members
HostPerformanceMetricGroup.TimeCollected
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OpsiService.Models
Assembly: OCI.DotNetSDK.Opsi.dll
Syntax
public class HostGpuProcesses : HostPerformanceMetricGroup

Properties

ElapsedTime

Declaration
[JsonProperty(PropertyName = "elapsedTime")]
public double ElapsedTime { get; set; }
Property Value
Type Description
double

Process elapsed time

GpuId

Declaration
[JsonProperty(PropertyName = "gpuId")]
public int? GpuId { get; set; }
Property Value
Type Description
int?

GPU Identifier

GpuMemoryUsage

Declaration
[JsonProperty(PropertyName = "gpuMemoryUsage")]
public double GpuMemoryUsage { get; set; }
Property Value
Type Description
double

Memory Used by Process in MBs

Pid

Declaration
[JsonProperty(PropertyName = "pid")]
public int? Pid { get; set; }
Property Value
Type Description
int?

Process Identifier

ProcessName

Declaration
[JsonProperty(PropertyName = "processName")]
public string ProcessName { get; set; }
Property Value
Type Description
string

Process Name (process using GPU)

In this article
Back to top