Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/Models/OverallStatistics.cs @ 9617

Last change on this file since 9617 was 9617, checked in by pfleck, 11 years ago

#2063:
Started integrating Hive statistics into statistics web project.
Added jqPlot library for charting.

File size: 426 bytes
Line 
1namespace HeuristicLab.Services.Hive.Statistics.Models {
2  public class OverallStatus {
3    public int OverallCurrentlyAvailableCores { get; set; }
4    public int CurrentlyAvailableCores { get; set; }
5    public int CurrentlyUsedCores { get; set; }
6    public int CurrentlyJobsWaiting { get; set; }
7    public double OverallCpuUtilization { get; set; }
8    public double AvailableCpuUtilization { get; set; }
9  }
10}
Note: See TracBrowser for help on using the repository browser.