From 12cc28782884a759119a469adbf2d7c51fdafb76 Mon Sep 17 00:00:00 2001 From: lassulus Date: Mon, 7 Feb 2022 23:53:53 +0100 Subject: l radio: fix listeners count --- lass/2configs/radio.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lass/2configs/radio.nix') diff --git a/lass/2configs/radio.nix b/lass/2configs/radio.nix index f2a5a637..15d07dad 100644 --- a/lass/2configs/radio.nix +++ b/lass/2configs/radio.nix @@ -235,7 +235,8 @@ in { ${pkgs.mpc_cli}/bin/mpc current -f %file% done | while read track; do - listeners=$(${pkgs.iproute}/bin/ss -Hno state established 'sport = :8000' | grep '^tcp' | wc -l) + listeners=$(${pkgs.curl}/bin/curl lassul.us:8000/status-json.xsl | + ${pkgs.jq}/bin/jq '[.icestats.source[].listeners] | add') echo "$(date -Is)" "$track" | tee -a "$HISTORY_FILE" echo "$(tail -$LIMIT "$HISTORY_FILE")" > "$HISTORY_FILE" ${set_irc_topic} "playing: $track listeners: $listeners" -- cgit v1.2.3