Hello all;
I'm attempting to graph signal levels on the homepage, and the signal level parameter is refreshed/informed as a negative number. I have currently 139 CPEs connected, but for some reason 133 show up as "Good," 0 show up as "Moderate," and 46 show up as "Poor," which os more CPEs than are connected to the server. I've checked entries in each list under the Devices tab, and many CPEs in each list are incorrectly listed (showed up in Good, but their signal level is between -100 and -115)

Also, in the Devices tab, if I make a new query by this parameter for anything less than -1 or -5, no devices show up, but the correct number of devices shows up when I query the RSRP0 < 0. I'm under the impression that some devices are registering twice, and that this issue pertains to this parameter being negative. (A similar graph of a parameter, SINR, reads correctly and is informed as a positive integer) Any thoughts? Thanks!

Mitch

 here is the code for my graph:

 "rsrp0" : [
      {
        "label" : "Good",
        "color" : "#5e5",
"query" : {"InternetGatewayDevice.WEB_GUI.Status.LTE_Status.LTE_System.RSRP0" : {"$gt" : "<%= -100 %>"}}
      },
      {
        "label" : "Moderate",
        "color" : "#ee5",
"query" : {"InternetGatewayDevice.WEB_GUI.Status.LTE_Status.LTE_System.RSRP0" : {"$lt" : "<%= -100 %>", "$gt" : "<%= -115 %>"}}
      },
      {
        "label" : "Poor",
        "color" : "#e55",
"query" : {"InternetGatewayDevice.WEB_GUI.Status.LTE_Status.LTE_System.RSRP0" : {"$lt" : "<%= -115 %>"}}
      }
    ],


_______________________________________________
Users mailing list
[email protected]
http://lists.genieacs.com/mailman/listinfo/users

Reply via email to