Changeset 12551 for branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApi/DataTransfer
- Timestamp:
- 06/30/15 13:12:07 (9 years ago)
- Location:
- branches/HiveStatistics/sources
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources
-
branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApi/DataTransfer/Client.cs
r12525 r12551 35 35 public Guid? GroupId { get; set; } 36 36 public string GroupName { get; set; } 37 public bool IsAllowedToCalculate { get; set; } 37 38 } 38 39 } -
branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApi/DataTransfer/ClientDetails.cs
r12525 r12551 43 43 public long TotalTransferringTime { get; set; } 44 44 public IEnumerable<TaskStateCount> TasksStates { get; set; } 45 public IEnumerable<User> Users { get; set; } 45 46 } 46 47 } -
branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApi/DataTransfer/Group.cs
r12525 r12551 31 31 public int UsedMemory { get; set; } 32 32 public double CpuUtilization { get; set; } 33 public int Clients { get; set; } 33 public int TotalClients { get; set; } 34 public int OnlineClients { get; set; } 34 35 } 35 36 } -
branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApi/DataTransfer/GroupDetails.cs
r12525 r12551 21 21 22 22 using System; 23 using System.Collections.Generic; 23 24 24 25 namespace HeuristicLab.Services.WebApp.Statistics.WebApi.DataTransfer { … … 30 31 public int TotalMemory { get; set; } 31 32 public int UsedMemory { get; set; } 32 public double CpuUtilization { get; set; } 33 public int Clients { get; set; } 33 public double TotalCpuUtilization { get; set; } 34 public double ActiveCpuUtilization { get; set; } 35 public int TotalClients { get; set; } 36 public int OnlineClients { get; set; } 37 public long TotalUnavailableTime { get; set; } 38 public long TotalCalculatingTime { get; set; } 39 public long TotalIdleTime { get; set; } 40 public long TotalOfflineTime { get; set; } 41 public long TotalTransferringTime { get; set; } 42 public IEnumerable<TaskStateCount> TasksStates { get; set; } 34 43 } 35 44 }
Note: See TracChangeset
for help on using the changeset viewer.