-
Notifications
You must be signed in to change notification settings - Fork 205
/
dc_dashboard.php
153 lines (144 loc) · 5.15 KB
/
dc_dashboard.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?php
require_once("db.inc.php");
require_once("facilities.inc.php");
$subheader=__("Data Center Statistics");
$cab=new Cabinet();
$dc=new DataCenter();
$dc->DataCenterID=$_REQUEST["dc"];
$dcStats=$dc->GetDCStatistics();
$height=0;
$width=0;
$ie8fix="";
if(strlen($dc->DrawingFileName) >0){
$mapfile=$config->ParameterArray["drawingpath"]."$dc->DrawingFileName";
if(file_exists($mapfile)){
if(mime_content_type($mapfile)=='image/svg+xml'){
$svgfile = simplexml_load_file($mapfile);
$width = substr($svgfile['width'],0,4);
$height = substr($svgfile['height'],0,4);
}else{
list($width, $height, $type, $attr)=getimagesize($mapfile);
}
// There is a bug in the excanvas shim that can set the width of the canvas to 10x the width of the image
$ie8fix="
<script type=\"text/javascript\">
function uselessie(){
document.getElementById(\'mapCanvas\').className = \"mapCanvasiefix\";
}
</script>
<style type=\"text/css\">
.mapCanvasiefix {
width: {$width}px !important;
}
</style>";
}
}
// If no mapfile is set then we don't need the buttons to control drawing the map. Adjust the CSS to hide them and make the heading centered
if(strlen($dc->DrawingFileName) <1 || !file_exists($config->ParameterArray["drawingpath"].$dc->DrawingFileName)){
$screenadjustment="<style type=\"text/css\">.dcstats .heading > div { width: 100% !important;} .dcstats .heading > div + div { display: none; }</style>";
}
if ( $config->ParameterArray["mUnits"] == "english" ) {
$vol = __("Square Feet");
$density = __("Watts per Square Foot");
} else {
$vol = __("Square Meters");
$density = __("Watts per Square Meter" );
}
?>
<!doctype html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>openDCIM Data Center Information Management</title>
<link rel="stylesheet" href="css/inventory.php" type="text/css">
<link rel="stylesheet" href="css/jquery-ui.css" type="text/css">
<!--[if lte IE 8]>
<link rel="stylesheet" href="css/ie.css" type="text/css">
<?php if(isset($ie8fix)){print $ie8fix;} ?>
<script src="scripts/excanvas.js"></script>
<![endif]-->
<?php if(isset($screenadjustment)){print $screenadjustment;} ?>
<?php print $dc->DrawCanvas();?>
<script type="text/javascript" src="scripts/jquery.min.js"></script>
<script type="text/javascript" src="scripts/jquery-ui.min.js"></script>
</head>
<body onload="loadCanvas(),uselessie()">
<?php include( 'header.inc.php' ); ?>
<div class="page dcstats" id="mapadjust">
<?php
echo '<div class="main">
<div class="heading">
<div>
</div>
<div>
<button onclick="loadCanvas()">',__("Overview"),'</button>
<button onclick="space()">',__("Space"),'</button>
<button onclick="weight()">',__("Weight"),'</button>
<button onclick="power()">',__("Power"),'</button>
</div>
</div>
<div class="center"><div>
<div class="centermargin" id="dcstats">
<div class="table border">
<div class="title">',$dc->Name,'</div>
<div>
<div></div>
<div>',__("Infrastructure"),'</div>
<div>',__("Occupied"),'</div>
<div>',__("Allocated"),'</div>
<div>',__("Available"),'</div>
</div>
<div>
<div>',sprintf(__("Total U")." %5d",$dcStats["TotalU"]),'</div>
<div>',sprintf("%3d",$dcStats["Infrastructure"]),'</div>
<div>',sprintf("%3d",$dcStats["Occupied"]),'</div>
<div>',sprintf("%3d",$dcStats["Allocated"]),'</div>
<div>',sprintf("%3d",$dcStats["Available"]),'</div>
</div>
<div>
<div>',__("Percentage"),'</div>
<div>',(($dcStats["TotalU"])?sprintf("%3.1f%%",$dcStats["Infrastructure"]/$dcStats["TotalU"]*100):"0"),'</div>
<div>',(($dcStats["TotalU"])?sprintf("%3.1f%%",$dcStats["Occupied"]/$dcStats["TotalU"]*100):"0"),'</div>
<div>',(($dcStats["TotalU"])?sprintf("%3.1f%%",$dcStats["Allocated"]/$dcStats["TotalU"]*100):"0"),'</div>
<div>',(($dcStats["TotalU"])?sprintf("%3.1f%%",$dcStats["Available"]/$dcStats["TotalU"]*100):"0"),'</div>
</div>
</div> <!-- END div.table -->
<div class="table border">
<div>
<div>',__("Computed Wattage"),'</div>
<div>',sprintf("%7d %s", $dcStats["ComputedWatts"], __("Watts")),'</div>
</div>
<div>
<div>',__("Measured Wattage"), '</div>
<div>',sprintf("%7d %s", $dcStats["MeasuredWatts"], __("Watts")),'</div>
</div>
<div>
<div>',__("Design Maximum (kW)"),'</div>
<div>',sprintf("%7d kW",$dc->MaxkW ),'</div>
</div>
<div>
<div>',__("BTU Computation from Computed Watts"),'</div>
<div>',sprintf("%8d ".__("BTU"),$dcStats["ComputedWatts"]*3.412 ),'</div>
</div>
<div>
<div>',__("Data Center Size"),'</div>
<div>',sprintf("%8d %s",$dc->SquareFootage, $vol),'</div>
</div>
<div>
<div>',$density,'</div>
<div>',(($dc->SquareFootage)?sprintf("%8d ".__("Watts"),$dcStats["ComputedWatts"]/$dc->SquareFootage):"0 ".__("Watts")),'</div>
</div>
<div>
<div>',__("Minimum Cooling Tonnage (Based on Computed Watts)"),'</div>
<div>',sprintf("%7d ".__("Tons"),$dcStats["ComputedWatts"]*3.412*1.15/12000),'</div>
</div>
</div> <!-- END div.table -->
</div>';
print $dc->MakeImageMap('hidethelinks');
?>
</div></div>
</div><!-- END div.main -->
</div><!-- END div.page -->
</body>
</html>