mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2024-11-22 00:07:21 -06:00
Tree Overview now supports a "max depth" control.
This commit is contained in:
parent
4ecf968acc
commit
a5042220ce
@ -37,6 +37,10 @@ function start() {
|
||||
let links = [];
|
||||
|
||||
for (let i=0; i<data.length; i++) {
|
||||
let depth = data[i][1].parents.length;
|
||||
if (depth > maxDepth) {
|
||||
continue;
|
||||
}
|
||||
let name = data[i][1].name;
|
||||
let bytes = data[i][1].current_throughput[0];
|
||||
let bytesAsMegabits = bytes / 1000000;
|
||||
@ -84,6 +88,28 @@ function start() {
|
||||
});
|
||||
}
|
||||
|
||||
function getMaxDepth() {
|
||||
let maxDepth = 10;
|
||||
let storedDepth = localStorage.getItem("atsDepth");
|
||||
if (storedDepth !== null) {
|
||||
maxDepth = parseInt(storedDepth);
|
||||
} else {
|
||||
localStorage.setItem("atsDepth", maxDepth.toString());
|
||||
}
|
||||
return maxDepth;
|
||||
}
|
||||
|
||||
function bindMaxDepth() {
|
||||
let d = document.getElementById("maxDepth");
|
||||
d.value = maxDepth;
|
||||
d.onclick = () => {
|
||||
maxDepth = parseInt(d.value);
|
||||
localStorage.setItem("atsDepth", maxDepth.toString());
|
||||
};
|
||||
}
|
||||
|
||||
let maxDepth = getMaxDepth();
|
||||
bindMaxDepth();
|
||||
let graph = new AllTreeSankey("sankey");
|
||||
|
||||
start();
|
@ -1,4 +1,7 @@
|
||||
<div class="row" style="height: 100%;">
|
||||
<div class="col-12 small">
|
||||
<label for="maxDepth">Max Depth:</label> <input type="number" min="2" max="10" id="maxDepth">
|
||||
</div>
|
||||
<div class="col-12" style="height: 100%;" id="sankey"></div>
|
||||
</div>
|
||||
<script src="all_tree_sankey.js"></script>
|
Loading…
Reference in New Issue
Block a user