summaryrefslogblamecommitdiffstats
path: root/static/status-dnbd3.html
blob: 8fdcfa6a6e091dcae62aab8d19d38caeade69c45 (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                                      
                                                           







                                                                                 
                            



                                                                    
                                                 
                                                                                                                                                                                                                                                                                                              

                                                            
                                                




                                      
 

                                   
                                             

 



                                     

                      
                        
                                      

                                                  
                                        
                   
                             













                                      
                                
                                        
                    



                                  
                                                                                                                     



                                               

                                                           
 
                              
 

                                   
                                                               



             
                                                            

                                                     
                                           






                                                                                                            
                                

                                                     
                                         



                                   
                                


         
                                                  
 



                                                                    

                                         



                                                                       

                                                        

                                                                         
                                                                                                            



                                                       
                    
                                  
             



                                  
                                                





                                                  




                                                                                       









                                              
                               

                                   
                                      

                                                                




                                                     




                                
                                                         
                                                                                           

                                                                   





                                                        
                                         
                                 
                                      
                     
                                
                                                                                      
                                
                          
                                            
                                                                            
                                       
                      

                      
 



                               
                             








                                                      
 



                                                    






                                                                                         




                                                                  






                                                                                              









                                                                  












                                                                                  
                                                                                   











                                                                                        
                                                                         




















                                                                    








                                                                          
















                                 

                 
               
                         
                                        

                                                                 


                                 
                                                                                              

                                        





                                  




                                                  
                                                                                                       



                                                                


                                


     




                                                                      
                                  

                                                                            
                                      

                                                                         
                                   

                                                                      
                                 









                                                                               



                                                


                                                      
                                                                                                     
                                            

             

                                                              
                                       
                                                                          



                                                                                                                           

                                                                               


                                                                                                       


         
 
 





                                                   
                                                                                                                                                                                                                                           
                                                           
                                                                                                 
                                    
             


                                                                                    
             
 
                                                                             
                                            
                                         

                                                                                                                                    
                                
                                                                                  

                                         
             


                                                    
                                                         















                                                                  

     

         
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
    <script src="d3.v3.min.js"></script>
    <script type="text/javascript" src="jquery-1.7.1.min.js"></script>
    <script src="smoothie.js"></script>
    <style type="text/css">
        #graph, #statistics, #traffic {position: absolute }
        .circle, .link { stroke: #56f; stroke-width: 3px; stroke-opacity: 0.75; }
        .nodetext { pointer-events: none; font: 10px sans-serif; }
        body { width:100%; height:100%; margin:0; padding:0; overflow: hidden; }
        svg, div, canvas { margin:0; padding:0; }
    </style>
</head>
<body>
<div id="graph"></div>
<div id="statistics"> </div>
<div> <canvas id="traffic" width="100%" height="150"></canvas></div>
</body>
<script type="text/javascript">

// Initialize the statistics chart at the bottom.
var smoothie = new SmoothieChart({'millisPerPixel': 300, 'grid': {'millisPerLine': 30000}, timestampFormatter:SmoothieChart.timeFormatter, yMaxFormatter: bytesToString, yMinFormatter: bytesToString, valueTransformFunction: logarithmicScaling, minValue: 0, maxValue: 262144000, labels: {fontSize: 13}});
smoothie.streamTo(document.getElementById("traffic"), 2000);

// For coloring the servers and the chart-lines.
var colorList = d3.scale.category10();

var pendingLinks = [];
var intLinks = [];
var newLinks = [];

// IDs need to begin with a letter.
function makeId(prefix, text) {
    return prefix + text.replace(/\./g, "-");
}

function logarithmicScaling(value) {
    return Math.log(value/1000000+1);
}

function myGraph(el) {

    var changed = false;
    var ccX = 0, ccY = 0, ccCount = 0;

    // Add and remove elements on the graph object
    this.addNode = function (id, x, y) {
        title = id;
        id = makeId("a", id);
        var distance = 2;
        var radius = 4;
        var color = "#0000FF"; // Blue
        // Other attr if server.
        var s = servers[title]
        if(s) {
//            console.log(color);
            distance = 6;
            radius = 15;
        }

//        if (!distance) distance = 5;
//        distance *= w / 2000;
//        if (!radius) radius = 5;
        var node = findNode(id);
        // Add node, if it doesn't exist
        if (!node) {
            if (ccCount != 0) {
                x = ccX / ccCount;
                y = ccY / ccCount;
            }
            nodes.push({"id":id, "title": title, "distance":distance, "radius":radius, "x":x, "y":y, "color":color});
            changed = true;
        } else {
            var visNode = vis.select("#" + id);
            if (visNode) {
                visNode.select("circle").attr("r", radius);
            }

            node.lifetime = 2;

            var s = servers[title];
            if (s && visNode) {
                visNode.select("circle").style("fill", s.color)
            }
        }
    }

    // Remove nodes/edges that haven't reported for a while.
    this.decay = function () {
        for (var i = nodes.length - 1; i >= 0; --i) {
            if ( nodes[i].lifetime <= 0 ) {
                for (var j = links.length - 1; j >= 0; --j) {
                    if ((links[j].source === nodes[i]) || (links[j].target === nodes[i])) links.splice(j,1);
                }
                nodes.splice(i, 1);
                changed = true;
                continue;
            }
            nodes[i].lifetime--;
        }
        for (var i = links.length - 1; i >= 0; --i) {
            if (links[i].lifetime <= 0) {
                links.splice(i, 1);
                changed = true;
                continue;
            }
            links[i].lifetime--;
        }
    }

    this.addLink = function (sourceId, targetId) {

        // Link between servers?
        var stroke = "#56f";
        if (servers[sourceId] && servers[targetId]) stroke = "#f00";

        sourceId = makeId("a", sourceId);
        targetId = makeId("a", targetId);
        var sourceNode = findNode(sourceId);
        var targetNode = findNode(targetId);

        if ((sourceNode !== undefined) && (targetNode !== undefined)) {
            var link = findLink(sourceNode, targetNode);
            if (!link) {
                var index = $.inArray(sourceId + targetId, pendingLinks);
                if (index !== -1) {
                    links.push({"source": sourceNode, "target": targetNode, "lifetime":2, "color": stroke});
                    changed = true;
                } else {
                    newLinks.push(sourceId + targetId);
                }
            } else {
                link.lifetime = 2;
            }
        }
    }

    var findNode = function (id) {
        for (var i = 0; i < nodes.length; i++) {
            if (nodes[i].id === id)
                return nodes[i]
        }
    }

    var findLink = function (sourceId, targetId) {
        for (var i = 0; i < links.length; ++i) {
            if ( (links[i].source === sourceId && links[i].target === targetId)
                    || (links[i].source === targetId && links[i].target === sourceId) )
                return links[i];
        }
    }

    var findNodeIndex = function (id) {
        for (var i=0; i < nodes.length; i++) {
            if (nodes[i].id === id)
                return i
        };
    }

    var w = 100, h = 100;
    var lastW = -1, lastH = -1;

    var updateBounds = function() {
        var width = window.innerWidth;
        // Chart needs to fit under the graph and the statistics
        h = window.innerHeight - 150;
        // Width for the graph and the statistics div
        w = width/3*2;
        if (lastW === w && lastH === h) return;
        lastW = w;
        lastH = h;
        vis.attr("width", w);
        vis.attr("height", h);
        force.size([w, h]);
        $(el).attr("width", w);
        $(el).attr("height", h);
        // Positions for statistics and the traffic graph
        $("#statistics").attr("width", w/2).css("width", w/2 + "px").css("left", w + "px");
        $("#statistics").attr("height", h).css("height", h + "px");
        $("#traffic").attr("width", width).css("top", h + "px");
    }

    var vis = this.vis = d3.select(el).append("svg:svg")
        .attr("width", w)
        .attr("height", h);

    // Settings for movement of the graph
    var force = d3.layout.force()
        // Force of center gravitation
        .gravity(.06)
        // Distance of the links
        .distance(function(bla) { return bla.source.distance * bla.target.distance; })
        // Strength of the links
        .linkStrength(0.5)
        // Force with which the links "pull"
        .charge(function(bla) { return -bla.distance * 10 * bla.distance; })
        // Friction for the graph nodes
        .friction(0.4)
        .size([w, h]);


    var nodes = force.nodes(),
        links = force.links();

    this.update = function () {
        if (!changed) return;
            update();
    }

    var update = function () {
        changed = false;

        var node = vis.selectAll("g.node")
            .data(nodes, function(d) { return d.id;});


        var nodeEnter = node.enter().append("g")
            .attr("class", "node")
            .attr("id", function(d) { return d.id;})
            .on("mouseover", function(d) {
                // Highlight statistics div
                var statDiv = document.getElementById(makeId("b", d.title))
                if (statDiv){
                    statDiv.setAttribute("style", "background-color:blue; color:white;");
                }

                // Increase line width of server in chart
                var s = servers[d.title];
                if (!s) return;
                smoothie.seriesSet[s.index].options.lineWidth = 4;
            })
            .on("mouseout", function(d) {
                // Make statistics div normal again
                var statDiv = document.getElementById(makeId("b", d.title))
                if (statDiv){
                        statDiv.setAttribute("style", "background-color:white; color:black;");
                }

                // Reset line width
                var s = servers[d.title];
                if (!s) return;
                smoothie.seriesSet[s.index].options.lineWidth = 2;
            });

        nodeEnter.append("circle")
            .attr("class", "circle")
            .attr("r", function(d) { return d.radius; })
            .style("fill", function(d) { return d.color; });


        nodeEnter.append("text")
            .attr("class", "nodetext")
            .attr("dx", -32)
            .attr("dy", "-1em")
            .text(function(d) {return d.title});

        node.exit().remove();

        var link = vis.selectAll("line.link")
            .data(links, function(d) { return d.source.id + "-" + d.target.id; });

        link.enter().insert("line")
            .attr("class", "link").style({stroke: function(d) { return d.color }});

        link.exit().remove();

        vis.selectAll('g.node').forEach(function(e){$('#graph').find('svg').append(e)});

        var render = function() {
            var fixX = function(x) {
                return (x - lx) * scale + 20 + offX;
            }
            var fixY = function(y) {
                return (y - ly) * scale + 20 + offY;
            }
            var lx = 1000000, ly = 1000000, ux = -1000000, uy = -1000000;
            for (var i = 0; i < nodes.length; ++i) {
                if (nodes[i].x < lx) lx = nodes[i].x;
                if (nodes[i].x > ux) ux = nodes[i].x;
                if (nodes[i].y < ly) ly = nodes[i].y;
                if (nodes[i].y > uy) uy = nodes[i].y;
            }
            var width = (ux - lx), height = (uy - ly);
            var scale;
            var offX = 0, offY = 0;
            if ( (width / w) > (height / h) ) {
                    scale = (w - 40) / width;
                    offY = (h - (height * scale + 20)) / 2;
            } else {
                    scale = (h - 40) / height;
                    offX = (w - (width * scale + 20)) / 2;
            }
          link.attr("x1", function(d) { return fixX(d.source.x); })
              .attr("y1", function(d) { return fixY(d.source.y); })
              .attr("x2", function(d) { return fixX(d.target.x); })
              .attr("y2", function(d) { return fixY(d.target.y); });

          node.attr("transform", function(d) {
                  if (ccCount > 10) {
                    ccX = ccY = ccCount = 0;
                  }
                  ccCount++;
                  ccX += d.x;
                  ccY += d.y;
                  return "translate(" + fixX(d.x) + "," + fixY(d.y) + ")";
          });
        };

        force.on("tick", render);

        updateBounds();
        force.start();
    }

    update();
    $( window ).resize( update );
}

graph = new myGraph("#graph");

var servers = {};
var serverCount = 0;

var lastTime = 0;

// Get new data
setInterval( function() {
    $.get('/data.json', function(data) {
        if (data.timestamp < lastTime) lastTime = data.timestamp;
        if(data.timestamp === lastTime) return;
        var g = data.graph;
        var stats = data.servers;
        updateGraph(g, data);
        // updateTrafficGraph has to be called before updateTextStatistics to populate servers
        updateTrafficGraph(stats, data);
        updateTextStatistics(stats);
        lastTime = data.timestamp;
}, 'json').always(function() {
    graph.decay();
    graph.update();
    });
}, 2000);

// Update data of the graph
function updateGraph(g, data){
    if (g) {
        for (var i = 0; i < g.nodes.length; ++i) {
            graph.addNode(g.nodes[i].name, g.nodes[i].x, g.nodes[i].y); // g.nodes[i].x, g.nodes[i].y);
        }
        for (var i = 0; i < g.edges.length; ++i) {
            graph.addLink(g.edges[i].source, g.edges[i].target);
        }
        pendingLinks = intLinks;
        intLinks = newLinks;
        newLinks = [];
    }
}


// Convert bytes to GiB or TiB and return a string in form "10,23 GiB"
function bytesToString( bytes ) {
    var convertedValue;
    var unit;
    if (bytes >= 1099511627776 ) {
        convertedValue = Math.round( (bytes / 1099511627776) * 100 ) / 100 ;
        unit = " TiB";
    } else if (bytes >= 1073741824 ) {
        convertedValue = Math.round( (bytes / 1073741824) * 100 ) / 100 ;
        unit = " GiB";
    } else if (bytes >= 1048576 ) {
        convertedValue = Math.round( (bytes / 1048576) * 100 ) / 100 ;
        unit = " MiB";
    } else if ( bytes >= 1024 ) {
        convertedValue = Math.round( (bytes / 1024) * 100 ) / 100 ;
//        convertedValue = Math.round( ( convertedValue / 1024 ) * 100 ) / 100;
        unit = " KiB";
    } else {
        convertedValue = Math.round(bytes);
        unit = " B";
    }
    return convertedValue + unit;
}

// Update data of the statistics divs
function updateTextStatistics(stats){
    if (stats) {
        for (var i = 0; i < stats.length; ++i) {
            var divId = makeId("b", stats[i].address);
            var server = $('#' + divId);
            if (server.length == 0){
                    $("#statistics").append("<div id=" + makeId ("b", stats[i].address) + "></div>");
                    server = $("#" + divId);
            }

            var upload = servers[stats[i].address].uploadRate;
            upload = upload ? upload : 0;
            // Generate the HTML string
            server.html( "<p><b> Server: " + stats[i].address + "</b><br>"
                + "Number of clients: "
                + stats[i].clientCount + "<br>"
                + "uptime: " + Math.floor(stats[i].uptime / (3600 * 24)) + "d "
                + Math.floor(stats[i].uptime / 3600) % 24 + "h " + Math.floor((stats[i].uptime) / 60) % 60 + "min" + "<br>"
                + "Sent: " + bytesToString(stats[i].bytesSent)  + "<br>"
                + "Received: " + bytesToString(stats[i].bytesReceived) + "<br>"
                + "Upload: " + bytesToString(servers[stats[i].address].uploadRate) + "/s<br>"
                + "Upload Peak: " + bytesToString(servers[stats[i].address].uploadPeak) + "/s" + "</p>"
                );
        }
    }
}


// Update the traffic graph
function updateTrafficGraph(stats, data){
    if (stats) {
        for (var i = 0; i < stats.length; ++i) {
            var server = servers[stats[i].address];
            if (!server) {
                servers[stats[i].address] = server = { 'lastUptime': 0, 'lastTimestamp': 0, 'lastSent': 0, 'line': new TimeSeries({logarithmicScale: true}), 'index': serverCount++ , 'uploadRate': 0, 'downloadRate': 0, 'uploadPeak': 0 }
                server.color = colorList(stats[i].address);
                smoothie.addTimeSeries(server['line'], {lineWidth:2, strokeStyle: server.color});
              //console.log(server);
            }
            // Server seems to have rebootet, redo values but add no point to chart.
            if (server['lastUptime'] > stats[i].uptime) {
                server['lastUptime'] = 0;
            }

            // Add points to graph and set the upload rate for the statistics
            if (server['lastUptime'] != 0) {
                // Upload rate in bytes/s
                server['uploadRate'] = (stats[i].bytesSent - server['lastSent'])/(stats[i].timestamp - server.lastTimestamp) * 1000;
                if (server['uploadRate'] > server['uploadPeak']) server['uploadPeak'] = server['uploadRate'];
                // Rate in MiB/s
                server['line'].append(new Date().getTime(), server['uploadRate']);
            } else {
                server['uploadRate'] = 0;
            }

            server['lastUptime'] = stats[i].uptime;
            server['lastSent'] = stats[i].bytesSent;
            server['lastTimestamp'] = stats[i].timestamp;

//            if (Math.random() > .8){
//                var delServ = server;
//                setTimeout(function() {
//                        smoothie.removeTimeSeries(delServ.line);
//                        for (var srv in servers) {
//                                if (srv.index > delServ.index)
//                                        srv.index--;
//                        }
//                        serverCount--;
//                }, 30000);
//                delete servers[stats[i].address];
//                console.log("Baleeted");
//                console.log(servers);
//            }
        }
    }
}

</script>