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