34 lines
1.1 KiB
Markdown
34 lines
1.1 KiB
Markdown
|
## huawei_let_exporter
|
||
|
|
||
|
# Install
|
||
|
|
||
|
```
|
||
|
docker build -t huawei_lte_exporter .
|
||
|
|
||
|
export ROUTER_ADDRESS=192.168.8.1
|
||
|
export ROUTER_USER=admin
|
||
|
export ROUTER_PASS=admin
|
||
|
export PROM_PORT=8080
|
||
|
|
||
|
docker run -d -it -p $PROM_PORT:$PROM_PORT --name=hle huawei_lte_exporter
|
||
|
sleep 5
|
||
|
curl http://localhost:$PROM_PORT
|
||
|
|
||
|
HELP band The signal band the LTE connection is using
|
||
|
TYPE band gauge
|
||
|
band{deviceName="B535-232",iccid="111"} 1
|
||
|
HELP rsrp The average power received from a single Reference signal, and Its typical range is around -44dbm (good) to -140dbm(bad)
|
||
|
TYPE rsrp gauge
|
||
|
rsrp{deviceName="B535-232",iccid="111"} -98
|
||
|
HELP rsrq Indicates quality of the received signal, and its range is typically -19.5dB(bad) to -3dB (good)
|
||
|
TYPE rsrq gauge
|
||
|
rsrq{deviceName="B535-232",iccid="111"} -10.0
|
||
|
HELP rssi Represents the entire received power including the wanted power from the serving cell as well as all co-channel power and other sources of noise in dBm
|
||
|
TYPE rssi gauge
|
||
|
rssi{deviceName="B535-232",iccid="111"} -71
|
||
|
HELP sinr The signal-to-noise ratio of the given signal in dB
|
||
|
TYPE sinr gauge
|
||
|
rsrq{deviceName="B535-232",iccid="111"} 11
|
||
|
```
|
||
|
|