- Timestamp:
- 09/21/15 16:28:38 (9 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Services.WebApp.Status/3.3/WebApi/DataTransfer/Status.cs
r12563 r12962 20 20 #endregion 21 21 22 using System; 22 23 using System.Collections.Generic; 23 24 … … 26 27 public class CoreStatus { 27 28 public int TotalCores { get; set; } 28 public int FreeCores { get; set; } // temporary quickfix for old chart data29 public int UsedCores { get; set; } 29 30 public int ActiveCores { get; set; } 30 31 public int CalculatingCores { get; set; } … … 39 40 public class MemoryStatus { 40 41 public int TotalMemory { get; set; } 41 public int FreeMemory { get; set; } // temporary quickfix for old chart data42 public int UsedMemory { get; set; } 42 43 public int ActiveMemory { get; set; } 43 public int UsedMemory { get; set; }44 public int CalculatingMemory { get; set; } 44 45 } 45 46 … … 61 62 } 62 63 64 public class TimeStatus { 65 public long MinCalculatingTime { get; set; } 66 public long MaxCalculatingTime { get; set; } 67 public long AvgCalculatingTime { get; set; } 68 public long StandardDeviationCalculatingTime { get; set; } 69 public long AvgWaitingTime { get; set; } 70 public long TotalCpuTime { get; set; } 71 public DateTime? BeginDate { get; set; } 72 } 73 63 74 public class Status { 64 75 public CoreStatus CoreStatus { get; set; } 65 76 public CpuUtilizationStatus CpuUtilizationStatus { get; set; } 66 77 public MemoryStatus MemoryStatus { get; set; } 78 public TimeStatus TimeStatus { get; set; } 67 79 public IEnumerable<TaskStatus> TasksStatus { get; set; } 68 80 public IEnumerable<SlaveStatus> SlavesStatus { get; set; }
Note: See TracChangeset
for help on using the changeset viewer.