mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 00:52:37 +02:00
Removed extra code no longer required.
This commit is contained in:
parent
5ee31d6055
commit
65cdd8b97f
1 changed files with 1 additions and 13 deletions
|
@ -1,6 +1,5 @@
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
|
|
||||||
var currentHighchart;
|
|
||||||
|
|
||||||
// setup a function to grab the nodeStats
|
// setup a function to grab the nodeStats
|
||||||
function getNodeStats() {
|
function getNodeStats() {
|
||||||
|
@ -22,22 +21,11 @@ $(document).ready(function(){
|
||||||
$('.jh-value span').each(function(val){
|
$('.jh-value span').each(function(val){
|
||||||
console.log(val);
|
console.log(val);
|
||||||
if (!isNaN($(this).text())) {
|
if (!isNaN($(this).text())) {
|
||||||
// this looks like a number - give it the clickable class so we can get graphs for it
|
// this looks like a number - give it the clickable class
|
||||||
$(this).addClass('graphable-stat');
|
$(this).addClass('graphable-stat');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
if (currentHighchart) {
|
|
||||||
// get the current time to set with the point
|
|
||||||
var x = (new Date()).getTime();
|
|
||||||
|
|
||||||
// get the last value using underscore-keypath
|
|
||||||
var y = Number(_(json).valueForKeyPath(graphKeypath));
|
|
||||||
|
|
||||||
// start shifting the chart once we hit 20 data points
|
|
||||||
var shift = currentHighchart.series[0].data.length > 20;
|
|
||||||
currentHighchart.series[0].addPoint([x, y], true, shift);
|
|
||||||
}
|
|
||||||
}).fail(function(data) {
|
}).fail(function(data) {
|
||||||
$('#stats-container th').each(function(){
|
$('#stats-container th').each(function(){
|
||||||
$(this).addClass('stale');
|
$(this).addClass('stale');
|
||||||
|
|
Loading…
Reference in a new issue