Last change
on this file since 9716 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 | |
---|
1 | namespace 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.