Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | namespace 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.