Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 11552 was 11246, checked in by mroscoe, 10 years ago
File size: 476 bytes
Line 
1using System;
2using System.Collections.Generic;
3namespace HeuristicLab.Services.Hive.Statistics.Models {
4  public class OverallStatus {
5    public int OverallCurrentlyAvailableCores { get; set; }
6    public int CurrentlyAvailableCores { get; set; }
7    public int CurrentlyUsedCores { get; set; }
8    public int CurrentlyJobsWaiting { get; set; }
9    public double OverallCpuUtilization { get; set; }
10    public double AvailableCpuUtilization { get; set; }
11  }
12}
Note: See TracBrowser for help on using the repository browser.