blob: 306467a7679e0dd1e6ab20b8e53d282c4840f415 [file] [log] [blame]
Siobhan Tullycf04fb62014-01-11 11:25:57 -05001{% extends "admin/base.html" %}
2{% load admin_static %}
3
Siobhan Tully90040c22014-01-13 23:47:24 -05004{% block content %}
Scott Baker771819b2014-03-19 22:10:17 -07005<link rel="stylesheet" href="http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.0/css/jquery.dataTables.css">
6<link rel="stylesheet" type="text/css" href="{% static 'suit/css/suit.css' %}" media="all">
7<link rel="stylesheet" type="text/css" href="http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.0/css/jquery.dataTables_themeroller.css">
8<link rel="stylesheet" type="text/css" href="{% static 'planetstack.css' %}" media="all">
9<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
Siobhan Tullye18b3442014-02-23 14:23:34 -050010
Siobhan Tullye18b3442014-02-23 14:23:34 -050011<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.css" />
12<script src="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.js"></script>
13
Siobhan Tullye18b3442014-02-23 14:23:34 -050014
Scott Baker771819b2014-03-19 22:10:17 -070015<!-- no need to include jquery here as it's already included by base.html. Including it multiple times will break mtuity statistics. -->
16<!-- src="http://code.jquery.com/jquery-1.9.1.js" -->
17
18<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
19<script src="http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.4/jquery.dataTables.min.js"></script>
20<script type="text/javascript" src="{% static 'log4javascript-1.4.6/log4javascript.js' %}"></script>
21<script src="{% static 'js/Leaflet.MakiMarkers.js' %}" > </script>
22
23<script>
24 $(function() {
25 $( "#tabs" ).tabs({active: 0
26 //collapsible: true
27 });
28 });
29</script>
Siobhan Tullye18b3442014-02-23 14:23:34 -050030<script>
Siobhan Tully06d2c032014-02-23 23:48:52 -050031
Scott Baker771819b2014-03-19 22:10:17 -070032function confirmDialog(title,msg) {
33 var dialog = $('<div>'+msg+'</div>');
34 var def = $.Deferred();
35
36 $(dialog).dialog({
37 resizable: false,
38 title: title,
39 autoOpen: true,
40 modal: true,
41 dialogClass: "dashboard-hpc-sliver",
42 buttons: {
43 'OK': function() {
44 def.resolve();
45 log.debug("Chose to add a sliver");
46 $( this ).dialog( "close" );
47 },
48 'Cancel': function() {
49 def.reject();
50 $( this ).dialog( "close" );
51 }
52 },
53 close: {
54 }
55 });
56 return def.promise();
57}
58
59 </script>
60
61<div id="tabs" class="inner-center-column ui-tabs ui-widget ui-widget-content ui-corner-all">
62 <ul id="suit_form_tabs" class="nav nav-tabs nav-tabs-suit">
63 <li class="active"><a href="#tabs-1">Developer View</a></li>
64 <li><a href="#tabs-2">CDN Operations </a></li>
65 <li><a href="#tabs-3">Historical</a></li>
66 <li><a href="#tabs-3">Tenant</a></li>
67 </ul>
68<div id="tabs-1">
69</div>
70<div id="tabs-2">
71 <div id="HPCDashboard">
72 <h1>CDN Operations View</h1>
73 <span id="hpcSummary">
74 <span class="summary-attr"><b>Active Slivers:</b> <span id="active-slivers-value"> </span> </span>
75 <span class="summary-attr"><b>Overall Throughput:</b> <span id="overall-throughput-value"> </span> </span>
76 <span class="summary-attr-util"><b>Average CPU Utilization:</b> <span id="cpu-utilization-value"> </span> </span>
77 </span>
78 <div id="map-us" ></div>
79 <div style="line-height: 30%"><br></div><table border=0><tr>
80 <td>Least Loaded&nbsp;&nbsp;</td>
81 <td bgcolor="#0000FF" width=40>&nbsp;</td>
82 <td bgcolor="#00FFFF" width=40>&nbsp;</td>
83 <td bgcolor="#00FF00" width=40>&nbsp;</td>
84 <td bgcolor="#FFFF00" width=40>&nbsp;</td>
85 <td bgcolor="#FF0000" width=40>&nbsp;</td>
86 <td>&nbsp;&nbsp;Most Loaded</td>
87 </tr></table>
88 </div>
89</div>
90<div id="tabs-3">
91{% include "/opt/planetstack/templates/admin/dashboard/hpc_historical.html" %}
92</div>
93</div>
94
95<script>
96var oTable;
Siobhan Tullye18b3442014-02-23 14:23:34 -050097var consoleAppender = new log4javascript.BrowserConsoleAppender();
98var patternLayout = new log4javascript.PatternLayout("%d{HH:mm:ss,SSS} %l{s:l} %-5p - %m{1}%n");
99consoleAppender.setLayout(patternLayout);
100
Scott Baker771819b2014-03-19 22:10:17 -0700101//var log = log4javascript.getDefaultLogger();
Siobhan Tullye18b3442014-02-23 14:23:34 -0500102var log = log4javascript.getRootLogger();
103log.addAppender(consoleAppender);
Scott Baker771819b2014-03-19 22:10:17 -0700104log.setLevel(log4javascript.Level.ERROR);
105
106function updateUserSliceTable(){
107 log.debug("Should grab user slice info");
108 jQuery.ajax({
109 async:true,
110 dataType: 'json',
111 url: '/hpcdashuserslices',
112 success: function(data){
113 log.info("Got Data back for User SliceTable");
114 //parseData(data);
115 //createUserSliceTable(data);
116 setTimeout(function () { updateUserSliceTable() }, 5000);
117 },
118 error: function(data){
119 log.debug("COULDNT GET DATA BACK");
120 setTimeout(function () { updateUserSliceTable() }, 5000);
121 }
122 });
123}
124
125function createUserSliceTable(data) {
126 log.debug("Creating User Slice Table");
127
128 //Add check for #dynamicusersliceinfo_filter label-> input having focus here
129
130 $('#tabs-1').html( '<table cellpadding="0" cellspacing="0" border="0" class="display" id="dynamicusersliceinfo"></table>' );
131 var actualEntries = [];
132 log.debug(data['userSliceInfo']['rows'][0]['slicename']);
133
134 var rows = data['userSliceInfo']['rows'];
135 for (row in rows) {
136 log.debug(row[0]);
137 slicename = rows[row]['slicename'];
138 sliceid = rows[row]['sliceid'];
139 role = rows[row]['role'];
140 slivercount = rows[row]['slivercount'];
141 sitecount = rows[row]['sitecount'];
142 actualEntries.push(['<a href="http://{{request.get_host}}/admin/core/slice/' + sliceid + '">' + slicename + '</a>',
143 role, slivercount, sitecount]);
144 }
145 oTable = $('#dynamicusersliceinfo').dataTable( {
146 "bJQueryUI": true,
147 "aaData": actualEntries ,
148 "bStateSave": true,
149 "aoColumns": [
150 { "sTitle": "Slice" },
151 { "sTitle": "Privilege" , sClass: "alignCenter"},
152 { "sTitle": "Number of Slivers" , sClass: "alignCenter"},
153 { "sTitle": "Number of Sites" , sClass: "alignCenter"},
154 ]
155 } );
156
157 // If the filter had focus, reapply here
158
159 setTimeout(function() {
160 jQuery.ajax({
161 url: '/hpcdashuserslices',
162 dataType: 'json',
163 success: function(data){ createUserSliceTable(data); },
164 complete: function(){ },
165 });
166 }, 10000);
167}
168
169function initTable(){
170 log.debug("Initializing Table")
171 jQuery.ajax({
172 url: '/hpcdashuserslices',
173 dataType: 'json',
174 success: function(data){ createUserSliceTable(data); },
175 complete: function(){
176 }
177 });
178 updateUserSliceTable();
179}
180
181
182initTable();
183
184//$( "#dialogadd" ).dialog({ autoOpen: false });
185//$( "#remSliverdialog" ).dialog({ autoOpen: false });
Siobhan Tullye18b3442014-02-23 14:23:34 -0500186
Siobhan Tullye18b3442014-02-23 14:23:34 -0500187L.Map = L.Map.extend({
188 openPopup: function(popup) {
189 this._popup = popup;
190
191 return this.addLayer(popup).fire('popupopen', {
192 popup: this._popup
193 });
194 }
195});
196
197
198//Iterate through data and find the max/min coordinates to include all of our points to start
199var map = L.map('map-us'); //.setView([0, 0], 1);
Scott Baker771819b2014-03-19 22:10:17 -0700200map.scrollWheelZoom.disable();
Siobhan Tullye18b3442014-02-23 14:23:34 -0500201
Scott Baker771819b2014-03-19 22:10:17 -0700202//
203// Great tiles, but starting to occasionally see 403 errors on certain tiles causing grey out effect
204//L.tileLayer('http://{s}.tile.cloudmade.com/BC9A493B41014CAABB98F0471D759707/997/256/{z}/{x}/{y}.png', {
205//
206// Swapping out cloudmade tiles to openstreetmap - too many grey tiles showing
207L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
Siobhan Tullye18b3442014-02-23 14:23:34 -0500208 maxZoom: 18,
209 attribution: 'Test'
210}).addTo(map);
211
212var arrayOfLatLngs = [];
Scott Baker771819b2014-03-19 22:10:17 -0700213var mapData = {{ cdnData|safe }};
214log.debug( mapData );
Siobhan Tullye18b3442014-02-23 14:23:34 -0500215
Scott Baker771819b2014-03-19 22:10:17 -0700216for ( var key in mapData ) {
217 arrayOfLatLngs.push([mapData[key]['lat'],mapData[key]['long']]);
218 log.debug( arrayOfLatLngs );
Siobhan Tullye18b3442014-02-23 14:23:34 -0500219
Scott Baker771819b2014-03-19 22:10:17 -0700220 mapData[key]['marker'] = L.marker([mapData[key]['lat'], mapData[key]['long']], {icon: getIcon(mapData[key]['numNodes'], mapData[key]['numHPCSlivers'], 0, mapData[key]['hot']) });
221 mapData[key]['marker'].addTo(map).bindPopup(setPopupVals(key, mapData[key]));
Siobhan Tullye18b3442014-02-23 14:23:34 -0500222
223}
224var bounds = new L.LatLngBounds(arrayOfLatLngs);
225map.fitBounds(bounds);
226
227var popup = L.popup();
228
Siobhan Tully06d2c032014-02-23 23:48:52 -0500229
230function setPopupVals (site, siteData) {
231 var retVal = '<span class="SiteDetail"><b>' + site + '</b></span>' +
232 '</br><a href="' + siteData['siteUrl'] + '">' + siteData['siteUrl'] + '</a>' +
Scott Baker771819b2014-03-19 22:10:17 -0700233 '</br><b>HPC Slivers: </b>' + siteData['numHPCSlivers'] +
234 '</br><b>Total Nodes: </b>' + siteData['numNodes'] +
235// '</br><b>Hot: </b>' + Math.round(siteData['hot']*100) +
236 '</br><b>Measured Load: </b>' + siteData['load'] + '%' +
237 '<span id="addSlivers"></br><a href="#" id="addHPCSliver" data-site="' + site + '" data-availNodes="' + siteData['numNodes'] +'">Add HPC Slivers</a> </span>' +
238 '<span id="remSlivers"><a href="#" id="remHPCSliver" data-site="' + site + '">Remove HPC Slivers</a> </span>';
Siobhan Tully06d2c032014-02-23 23:48:52 -0500239
240 return retVal;
241}
Siobhan Tully06d2c032014-02-23 23:48:52 -0500242
Scott Baker771819b2014-03-19 22:10:17 -0700243$('#map-us').on('click', '#remHPCSliver', function() {
244
245 $.ajax({
246 url : '/dashboardaddorremsliver/',
247 dataType : 'json',
248 data: {site: $(this).data('site'),
249 actionToDo: "rem",
250 csrfmiddlewaretoken: "{{ csrf_token }}", // < here
251 state:"inactive" },
252 type : 'POST',
253 //success: function(response)
254 //{
255 // alert("Successfully posted request to REMOVE sliver");
256 //},
257 complete:function(){
258 alert("Successfully posted request to REMOVE sliver");
259 },
260 //error:function (xhr, textStatus, thrownError){
261 // alert("Could not request to remove HPC Sliver");
262 //}
263 });
264});
265
266$('#map-us').on('click', '#addHPCSliver', function() {
267
268 $.ajax({
269 url : '/dashboardaddorremsliver/',
270 dataType : 'json',
271 data: {site: $(this).data('site'),
272 actionToDo: "add",
273 csrfmiddlewaretoken: "{{ csrf_token }}", // < here
274 state:"inactive" },
275 type : 'POST',
276 success: function(response)
277 {
278 alert("Successfully posted request to add sliver");
279 },
280 complete:function()
281 {
282 alert("Successfully posted request to add sliver");
283 },
284 //error:function (xhr, textStatus, thrownError){
285 // alert("error doing something");
286 //}
287 });
288 // confirmDialog("Add HPC Slivers","Add some HPC Slivers to site " + $(this).data('site'));
289});
290
291function getIcon(numNodes, numHPCSlivers, currentBW, hot) {
292 //var colorChoices = ["#007FFF", "#0000FF", "#7f00ff", "#FF00FF", "#FF007F", "#FF0000"];
293 var colorChoices = ["#0000FF", "#00FFFF", "#00FF00", "#FFFF00", "#FF0000"];
294
295 var ratio = hot * 100; //(numHPCSlivers/numNodes) * 100;
Siobhan Tully06d2c032014-02-23 23:48:52 -0500296 var numColors = colorChoices.length;
297 var colorBands = 100/numColors;
298
299 //Algorithm for color tone should consider the number of available nodes
300 // on the site, and then how much the current dedicated nodes are impacted
301 //var iconColor = 0;
Scott Baker771819b2014-03-19 22:10:17 -0700302 var iconColor = colorChoices.length-1;
Siobhan Tully06d2c032014-02-23 23:48:52 -0500303 for (colorBand = 0; colorBand < numColors; colorBand ++) {
304 if (ratio < colorBands * colorBand+1) {
305 iconColor = colorBand
306 break;
307 }
308 }
Scott Baker771819b2014-03-19 22:10:17 -0700309
310 if (numHPCSlivers < 1) {
311 iconColor = "#7F7F7F";
312 } else {
313 iconColor = colorChoices[iconColor];
314 }
315
316 var icon = L.MakiMarkers.icon({icon: "star-stroked", color: iconColor , size: "s"});
Siobhan Tully06d2c032014-02-23 23:48:52 -0500317 return icon;
318}
319
320function updateMaps() {
Scott Baker771819b2014-03-19 22:10:17 -0700321 log.debug("Attempting to update Maps");
Siobhan Tully06d2c032014-02-23 23:48:52 -0500322 $.ajax({
323 url : '/hpcdashboard',
324 dataType : 'json',
325 type : 'GET',
326 success: function(newData)
327 {
Scott Baker771819b2014-03-19 22:10:17 -0700328 log.debug("Successfully got data back...");
329 log.debug(newData);
330 log.debug("Still have old data too");
331 log.debug(mapData);
Siobhan Tully06d2c032014-02-23 23:48:52 -0500332 updateMapData(newData);
333 }
334});
Scott Baker771819b2014-03-19 22:10:17 -0700335 setTimeout(updateMaps, 30000)
Siobhan Tully06d2c032014-02-23 23:48:52 -0500336
337}
338
339function updateMapData(newData) {
340 for ( site in newData ) {
341 var isNewSite = false;
342 //check to see if the site is new or not
Scott Baker771819b2014-03-19 22:10:17 -0700343 if (site in mapData) {
344 log.debug("Site " + site + " already mapped");
Siobhan Tully06d2c032014-02-23 23:48:52 -0500345 //take ownership of marker
Scott Baker771819b2014-03-19 22:10:17 -0700346 newData[site]['marker'] = mapData[site]['marker'];
347 delete mapData[site];
348 newData[site]['marker'].setIcon(getIcon(newData[site]['numNodes'], newData[site]['numHPCSlivers'], 0, newData[site]['hot']));
Siobhan Tully06d2c032014-02-23 23:48:52 -0500349 // workaround, markers currently don't have a setPopup Content method -- so have to grab object directly
350 newData[site]['marker']._popup.setContent(setPopupVals(site, newData[site]));
351 }
352 else {
353 isNewSite = true;
Scott Baker771819b2014-03-19 22:10:17 -0700354 log.debug("New Site detected: " + site);
Siobhan Tully06d2c032014-02-23 23:48:52 -0500355 newData[site]['marker'] = L.marker([newData[site]['lat'], newData[site]['long']],
Scott Baker771819b2014-03-19 22:10:17 -0700356 {icon: getIcon(newData[site]['numNodes'], newData[site]['numHPCSlivers'], 0, newData[site]['hot']) });
Siobhan Tully06d2c032014-02-23 23:48:52 -0500357 newData[site]['marker'].addTo(map).bindPopup(setPopupVals(site, newData[site])); //.openPopup();
Scott Baker771819b2014-03-19 22:10:17 -0700358 log.debug("Should have added the new site");
Siobhan Tully06d2c032014-02-23 23:48:52 -0500359
360 }
361 }
362
363 // Anything still in data needs to be removed since it is no longer a valid site
Scott Baker771819b2014-03-19 22:10:17 -0700364 for (remSite in mapData) {
Siobhan Tully06d2c032014-02-23 23:48:52 -0500365 log.warn("Site: " + remSite + " is no longer valid, removing from map");
366 map.removeLayer(data[remSite]['marker']);
367 }
Scott Baker771819b2014-03-19 22:10:17 -0700368 mapData = newData;
Siobhan Tully06d2c032014-02-23 23:48:52 -0500369}
370
Siobhan Tullye18b3442014-02-23 14:23:34 -0500371function onMapClick(e) {
372 popup
373 .setLatLng(e.latlng)
374 .setContent("You clicked the map at " + e.latlng.toString())
375 .openOn(map);
376}
377
Siobhan Tully06d2c032014-02-23 23:48:52 -0500378setTimeout(updateMaps, 5000)
379
Scott Baker771819b2014-03-19 22:10:17 -0700380// from stackexchange
381function setInnerText (elementId, text) {
382 var element;
383 if (document.getElementById) {
384 element = document.getElementById(elementId);
385 } else if (document.all) {
386 element = document.all[elementId];
387 }
388 if (element) {
389 if (typeof element.textContent != 'undefined') {
390 element.textContent = text;
391 } else if (typeof element.innerText != 'undefined') {
392 element.innerText = text;
393 } else if (typeof element.removeChild != 'undefined') {
394 while (element.hasChildNodes()) {
395 element.removeChild(element.lastChild);
396 }
397 element.appendChild(document.createTextNode(text)) ;
398 }
399 }
400}
401
402function updateLabelData(summaryData) {
403 setInnerText("active-slivers-value", summaryData["total_slivers"]);
404 setInnerText("overall-throughput-value", (summaryData["total_bandwidth"]*8/1024/1024/1024).toFixed(2) + " Gbps");
405 setInnerText("cpu-utilization-value", summaryData["average_cpu"] + "%");
406}
407
408function updateLabels() {
409 log.debug("Attempting to update Labels");
410 $.ajax({
411 url : '/hpcsummary',
412 dataType : 'json',
413 type : 'GET',
414 success: function(newData)
415 {
416 updateLabelData(newData);
417 }
418});
419 setTimeout(updateLabels, 30000)
420
421}
422
423setTimeout(updateLabels, 5000)
424
425
Siobhan Tullye18b3442014-02-23 14:23:34 -0500426</script>
Siobhan Tully90040c22014-01-13 23:47:24 -0500427{% endblock %}