Table of Contents

Class NodeInfo

Namespace
Balsam.Optimization
Assembly
Balsam.Backtester.dll

Encapsulates information about a compute node.

public class NodeInfo
Inheritance
NodeInfo
Inherited Members
Extension Methods

Properties

Cores

Gets/sets the number of processors on the machine.

public int Cores { get; set; }

Property Value

int

Host

Gets/sets the host name or IP address.

public string Host { get; set; }

Property Value

string

MachineName

Gets/sets the machine name.

public string MachineName { get; set; }

Property Value

string

MemoryUsed

Gets/sets the amount of memory currently being consumed in bytes.

public long MemoryUsed { get; set; }

Property Value

long

OS

Gets/sets the operating system version.

public string OS { get; set; }

Property Value

string

Port

Gets/sets the port used for communication.

public int Port { get; set; }

Property Value

int

Running

Gets/sets the number of currently running simulations.

public int Running { get; set; }

Property Value

int

TotalErrors

Gets/sets the total number of errors encountered.

public int TotalErrors { get; set; }

Property Value

int

TotalRuns

Gets/sets the total number of simulations run.

public int TotalRuns { get; set; }

Property Value

int

Uptime

Gets/sets the amount of time the server has been up.

public TimeSpan Uptime { get; set; }

Property Value

TimeSpan