mwan3: add interface uptime netifd value to ubus mwan3 status output
Add missing netifd uptime info to ubus status call.
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
(cherry picked from commit bfa849c14e
)
This commit is contained in:
parent
3371703487
commit
0c25f7a51c
1 changed files with 4 additions and 0 deletions
|
@ -104,10 +104,14 @@ get_mwan3_status() {
|
|||
let offline=time_n-time_d
|
||||
}
|
||||
|
||||
local uptime="0"
|
||||
network_get_uptime uptime "$iface"
|
||||
|
||||
json_add_object "${iface}"
|
||||
json_add_int age "$age"
|
||||
json_add_int online "${online}"
|
||||
json_add_int offline "${offline}"
|
||||
json_add_int uptime "${uptime}"
|
||||
json_add_int "score" "$(cat "$MWAN3TRACK_STATUS_DIR/${iface}/SCORE")"
|
||||
json_add_int "lost" "$(cat "$MWAN3TRACK_STATUS_DIR/${iface}/LOST")"
|
||||
json_add_int "turn" "$(cat "$MWAN3TRACK_STATUS_DIR/${iface}/TURN")"
|
||||
|
|
Loading…
Reference in a new issue