From e50531209ce69af1aeaaef662e95883a49df6482 Mon Sep 17 00:00:00 2001 From: Astro Date: Fri, 3 Nov 2023 20:34:50 +0100 Subject: [PATCH] pkgs/openwrt/usteer-stats.sh: fix by outputting types --- nix/pkgs/openwrt/usteer-stats.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/nix/pkgs/openwrt/usteer-stats.sh b/nix/pkgs/openwrt/usteer-stats.sh index 27b9169..0c2dc83 100755 --- a/nix/pkgs/openwrt/usteer-stats.sh +++ b/nix/pkgs/openwrt/usteer-stats.sh @@ -14,10 +14,10 @@ while true; do -e 'ROAM_SOURCE=@["hostapd.wlan2-c3d2"].roam_events.source' \ -e 'ROAM_TARGET=@["hostapd.wlan2-c3d2"].roam_events.target' ) - echo "PUTVAL \"$HOSTNAME/exec-usteer_local_info/load\" interval=$INTERVAL N:$LOAD" - echo "PUTVAL \"$HOSTNAME/exec-usteer_local_info/noise\" interval=$INTERVAL N:$NOISE" - echo "PUTVAL \"$HOSTNAME/exec-usteer_local_info/n_assoc\" interval=$INTERVAL N:$N_ASSOC" - echo "PUTVAL \"$HOSTNAME/exec-usteer_local_info/freq\" interval=$INTERVAL N:$FREQ" - echo "PUTVAL \"$HOSTNAME/exec-usteer_local_info/roam_source\" interval=$INTERVAL N:$ROAM_SOURCE" - echo "PUTVAL \"$HOSTNAME/exec-usteer_local_info/roam_target\" interval=$INTERVAL N:$ROAM_TARGET" + echo "PUTVAL \"$HOSTNAME/exec-usteer_local_info/stations-load\" interval=$INTERVAL N:$LOAD" + echo "PUTVAL \"$HOSTNAME/exec-usteer_local_info/signal_noise-noise\" interval=$INTERVAL N:$NOISE" + echo "PUTVAL \"$HOSTNAME/exec-usteer_local_info/stations-n_assoc\" interval=$INTERVAL N:$N_ASSOC" + echo "PUTVAL \"$HOSTNAME/exec-usteer_local_info/frequency-freq\" interval=$INTERVAL N:$FREQ" + echo "PUTVAL \"$HOSTNAME/exec-usteer_local_info/transitions-roam_source\" interval=$INTERVAL N:$ROAM_SOURCE" + echo "PUTVAL \"$HOSTNAME/exec-usteer_local_info/transitions-roam_target\" interval=$INTERVAL N:$ROAM_TARGET" done