Package version:

Interface IntegrationRuntimeNodeMonitoringData

Monitoring data for integration runtime node.

interface IntegrationRuntimeNodeMonitoringData {
    availableMemoryInMB?: number;
    concurrentJobsLimit?: number;
    concurrentJobsRunning?: number;
    cpuUtilization?: number;
    maxConcurrentJobs?: number;
    nodeName?: string;
    receivedBytes?: number;
    sentBytes?: number;
    [property: string]: any;
}

Indexable

  • [property: string]: any

    Describes unknown properties. The value of an unknown property can be of "any" type.

Properties

availableMemoryInMB?: number

Available memory (MB) on the integration runtime node. NOTE: This property will not be serialized. It can only be populated by the server.

concurrentJobsLimit?: number

Maximum concurrent jobs on the integration runtime node. NOTE: This property will not be serialized. It can only be populated by the server.

concurrentJobsRunning?: number

The number of jobs currently running on the integration runtime node. NOTE: This property will not be serialized. It can only be populated by the server.

cpuUtilization?: number

CPU percentage on the integration runtime node. NOTE: This property will not be serialized. It can only be populated by the server.

maxConcurrentJobs?: number

The maximum concurrent jobs in this integration runtime. NOTE: This property will not be serialized. It can only be populated by the server.

nodeName?: string

Name of the integration runtime node. NOTE: This property will not be serialized. It can only be populated by the server.

receivedBytes?: number

Received bytes on the integration runtime node. NOTE: This property will not be serialized. It can only be populated by the server.

sentBytes?: number

Sent bytes on the integration runtime node. NOTE: This property will not be serialized. It can only be populated by the server.