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
Host
Gets/sets the host name or IP address.
public string Host { get; set; }
Property Value
MachineName
Gets/sets the machine name.
public string MachineName { get; set; }
Property Value
MemoryUsed
Gets/sets the amount of memory currently being consumed in bytes.
public long MemoryUsed { get; set; }
Property Value
OS
Gets/sets the operating system version.
public string OS { get; set; }
Property Value
Port
Gets/sets the port used for communication.
public int Port { get; set; }
Property Value
Running
Gets/sets the number of currently running simulations.
public int Running { get; set; }
Property Value
TotalErrors
Gets/sets the total number of errors encountered.
public int TotalErrors { get; set; }
Property Value
TotalRuns
Gets/sets the total number of simulations run.
public int TotalRuns { get; set; }
Property Value
Uptime
Gets/sets the amount of time the server has been up.
public TimeSpan Uptime { get; set; }