RSRQ, RSSI, SINR graph issue

Hello,

I added graph for RSRQ, RSSI, SINR, but not correctly displaying. Anything I made wrong?

Below charts:

online:
  label: "'Online status'"
  slices:
    1_onlineNow:
      color: "'#31a354'"
      filter: Events.Inform > NOW() - 5 * 60 * 1000
      label: "'Online now'"
    2_past24:
      color: "'#a1d99b'"
      filter: Events.Inform > (NOW() - 5 * 60 * 1000) - (24 * 60 * 60 * 1000) AND
        Events.Inform < (NOW() - 5 * 60 * 1000)
      label: "'Past 24 hours'"
    3_others:
      color: "'#e5f5e0'"
      filter: Events.Inform < (NOW() - 5 * 60 * 1000) - (24 * 60 * 60 * 1000)
      label: "'Others'"
rsrq:
  label: "'LTE RSRQ'"
  slices:
    1_excellent:
      color: "'#31a354'"
      filter: InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.RSRQ
        >= -10
      label: "'Excellent'"
    2_good:
      color: "'#a1d99b'"
      filter: InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.RSRQ
        >= -15 AND
        InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.RSRQ
        < -10
      label: "'Good'"
    3_midcell:
      color: "'#e5f5e0'"
      filter: InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.RSRQ
        > -20 AND
        InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.RSRQ
        < -15
      label: "'Mid Cell'"
    4_celledge:
      color: "'#ffffff'"
      filter: InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.RSRQ
        <= -20
      label: "'Cell Edge'"
rssi:
  label: "'LTE RSSI'"
  slices:
    1_Excellent:
      color: "'#31a354'"
      filter: InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.RSSI
        <-65
      label: "'Excellent'"
    2_Good:
      color: "'#eef207'"
      filter: InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.RSSI
        > -65 AND
        InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.RSSI
        < -75
      label: "'Good'"
    3_Fair:
      color: "'#f1c232'"
      filter: InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.RSSI
        > -75 AND
        InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.RSSI
        < -85
      label: "'Fair'"
    4_Weak:
      color: "'#fc5959'"
      filter: InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.RSSI
        > -85
      label: "'Weak'"
sinr:
  label: "'LTE SINR'"
  slices:
    1_excellent:
      color: "'#31a354'"
      filter: InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.SINR
        >= 20
      label: "'Excellent'"
    2_good:
      color: "'#a1d99b'"
      filter: InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.SINR
        >= 13 AND
        InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.SINR
        < 20
      label: "'Good'"
    3_midcell:
      color: "'#e5f5e0'"
      filter: InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.SINR
        > 0 AND
        InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.SINR
        < 13
      label: "'Mid Cell'"
    4_celledge:
      color: "'#ffffff'"
      filter: InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.SINR
        < 0
      label: "'Cell Edge'"

Filter search:

I created filter as below:

- label: "'RSSI'"
  parameter: InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.RSSI
  type: "'string'"
  filter:
    _value: true
    match: exact
- label: "'RSRQ'"
  parameter: InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.RSRQ
  type: "'string'"
  filter:
    _value: true
    match: exact
- label: "'SINR'"
  parameter: InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.SINR
  type: "'string'"
  filter:
    _value: true
    match: exact

The chart code looks correct.

I think the values maybe be a string rather than a number.

Replaced to string same result, not working…

I had an LTE device on my lab server but the values I got from my device are -7dB, -15.0dB and -65dBm.

If I wanted to chart these values, I think I would have to reformat it to numbers (-7, -15.0 and -65) and then I could evaluate which devices are greater than, etc.

Maybe someone else here would have experience with this. I can setup my LTE device and do some testing but not till tomorrow.

if possible, can you share charts, filters, graph?

Sorry but I never created any charts for the LTE devices on my genieacs. I just used it for troubleshooting and comparison against the manufacturer’s own ACS.

Dustin,

Any chance testing?

Sorry but since our issues were different, I didn’t bother to setup an LTE device to test.

If I had to test/troubleshoot this, I would remove all but one slice to figure out why the devices are getting evaluated differently.