blob: 3491eda3801acf1f9c838d1aac56e0217e727aba [file] [log] [blame]
Scott Baker771819b2014-03-19 22:10:17 -07001// ----------------------------------------------------------------------------
2// node count and average cpu utilization
3
Scott Bakera0ffec52015-01-13 01:06:34 -08004function updatePageCPU() {
5 var url="/stats/?model_name=" + admin_object_name + "&pk=" + admin_object_id + "&meter=cpu" + "&controller_name=" + admin_object_controller;
6 console.log("fetching stats url " + url);
Scott Baker771819b2014-03-19 22:10:17 -07007 $.ajax({
Scott Baker61aefcf2014-04-25 15:21:18 -07008 url: url,
Scott Baker771819b2014-03-19 22:10:17 -07009 dataType : 'json',
10 type : 'GET',
Scott Bakerb23dd1d2014-06-09 16:03:35 -070011 success: function(newData) {
Scott Bakera0ffec52015-01-13 01:06:34 -080012 console.log(newData);
Scott Bakerb23dd1d2014-06-09 16:03:35 -070013 setTimeout(updatePageAnalytics, 30000);
14 },
15 error: function() {
Scott Baker771819b2014-03-19 22:10:17 -070016 }
17});
Scott Baker771819b2014-03-19 22:10:17 -070018}
19
Scott Bakerca2e22d2014-05-23 18:26:06 -070020$( document ).ready(function() {
Scott Bakera0ffec52015-01-13 01:06:34 -080021 if (admin_object_name == "Sliver" && admin_object_id != undefined) {
22 updatePageCPU();
23 }
24});
Scott Baker771819b2014-03-19 22:10:17 -070025