Monitoring.MetricJobStarted
namespace Monitoring
{
public class MetricJobStarted : MetricJobBase
{
public ulong TotalPhysicalMemory { get; set; }
public ulong AvailablePhysicalMemory { get; set; }
public string OperatingSystemName { get; set; }
public string OperatingSystemVersion { get; set; }
public bool Is64BitOperatingSystem { get; set; }
public bool Is64BitProcess { get; set; }
public int CpuCount { get; set; }
public string CallingAssembly { get; set; }
public MetricJobStarted();
}
}