diff options
Diffstat (limited to 'web/js/nms-map-handlers.js')
-rw-r--r-- | web/js/nms-map-handlers.js | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/web/js/nms-map-handlers.js b/web/js/nms-map-handlers.js index 42044d9..2c47536 100644 --- a/web/js/nms-map-handlers.js +++ b/web/js/nms-map-handlers.js @@ -15,6 +15,7 @@ var handler_uplinks = { init:uplinkInit, + getInfo:uplinkInfo, tag:"uplink", name:"Uplink" }; @@ -127,6 +128,33 @@ var handlers = [ handler_cpu ]; +function uplinkInfo(sw) +{ + var ret = new handlerInfo("uplink","Uplinks"); + ret.why = "Uplinks"; + ret.score =0; + if (testTree(nmsData,['switchstate','switches',sw,'uplinks'])) { + var u = parseInt(nmsData.switchstate.switches[sw].uplinks.live); + ret.data[0].value = u; + ret.data[0].description = "Uplinks"; + if (nmsData.switches.switches[sw].subnet4 == undefined || + nmsData.switches.switches[sw].subnet4 == null) { + if (u == 0) { + ret.score = 700 + ret.why = "0 uplinks with clientnet?"; + } else if (u == 1) { + ret.score = 600; + ret.why = "Only 1 uplink"; + } else if (u == 2) { + ret.score = 0; + } else { + ret.score = 500; + ret.why = u + " uplinks"; + } + } + } + return ret; +} /* * Update function for uplink map */ @@ -163,6 +191,7 @@ function uplinkUpdater() } } + /* * Init-function for uplink map */ |