From 0417bea8816a5811c13bd79f92cfe4d4b797f360 Mon Sep 17 00:00:00 2001 From: Yasen Pramatarov Date: Sun, 26 May 2024 22:04:30 +0300 Subject: [PATCH] Cleanup --- jicofo/jicofo-stats | 2 -- 1 file changed, 2 deletions(-) diff --git a/jicofo/jicofo-stats b/jicofo/jicofo-stats index c397648..10a26ed 100755 --- a/jicofo/jicofo-stats +++ b/jicofo/jicofo-stats @@ -116,14 +116,12 @@ jicofo_log_parse() { fi # locate conference starting event -# if [[ "$line" =~ ([0-9-]+\ [0-9:.]+)\ [A-Z]+:.*\ Videobridge\.createConference#[0-9]+:\ create_conf,\ id=([a-zA-Z0-9]+) ]]; then if [[ "$line" =~ ([0-9-]+\ [0-9:.]+)\ [A-Z]+:.*\[room=([^ ]+)@.*\]\ JitsiMeetConferenceImpl\.joinTheRoom ]]; then timestamp="${BASH_REMATCH[1]}" conferenceName="${BASH_REMATCH[2]}" start_times["$conferenceName"]="$timestamp" # locate the corresponding conference ending event -# elif [[ "$line" =~ ([0-9-]+\ [0-9:.]+)\ [A-Z]+:.*\[confId=([a-zA-Z0-9]+)\ .*conf_name=([^ ]+)@.*\]\ Conference\.expire ]]; then elif [[ "$line" =~ ([0-9-]+\ [0-9:.]+)\ [A-Z]+:.*\[room=([^ ]+)@.*\ meeting_id=([a-zA-Z0-9-]+)\]\ JitsiMeetConferenceImpl\.stop ]]; then end_time="${BASH_REMATCH[1]}" conferenceName="${BASH_REMATCH[2]}"