From 57063ae10888df9dffa2438a3ec5db35f4c6c4d5 Mon Sep 17 00:00:00 2001 From: Yasen Pramatarov Date: Mon, 10 Jun 2024 21:31:13 +0300 Subject: [PATCH] Adds initial list of example log regexps. --- TODO.md | 3 ++- log-regexps.txt | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 log-regexps.txt diff --git a/TODO.md b/TODO.md index 3b23386..40ed968 100644 --- a/TODO.md +++ b/TODO.md @@ -14,4 +14,5 @@ - info about JVBs used --- * FIXMEs: - - long commandline options work ok in jilo-cli, but not in jilo - update them as in cli \ No newline at end of file + - ~~long commandline options work ok in jilo-cli, but not in jilo - update them as in cli~~ + - finish SQL refactoring, move to separate tables for conferences and participants, linked by id diff --git a/log-regexps.txt b/log-regexps.txt new file mode 100644 index 0000000..860fc78 --- /dev/null +++ b/log-regexps.txt @@ -0,0 +1,35 @@ +This is a reference of the log lines and the corresponding regexps that are used in Jilo for events tracking + + +JVB: + +conference start: +log +JVB 2024-04-01 04:08:55.124 INFO: [19046] [confId=4c14584fce9a5970 conf_name=someroom123@conference.meet.example.com meeting_id=177c43a3] EndpointConnectionStatusMonitor.start#58: Starting connection status monitor +regex +JVB\ ([0-9-]+\ [0-9:.]+)\ ([A-Z]+):.*\[confId=([a-zA-Z]+)\ conf_name=(.*)@([a-zA-Z0-9-_.]+)\ meeting_id=.*\]\ EndpointConnectionStatusMonitor\.start.*:\ Starting\ connection\ status\ monitor + +conference end: +log +JVB 2024-04-01 03:04:24.339 INFO: [18981] [confId=4c14584fce9a5970 conf_name=someroom123@conference.meet.example.com meeting_id=177c43a3] EndpointConnectionStatusMonitor.stop#66: Stopped +regex + + + + +## OLD +# was used to insert start & end in one db record, +# retired because in "start" regex there was no conference name, only id +## + +conference start: +log +JVB 2024-04-01 03:02:52.593 INFO: [18962] Videobridge.createConference#255: create_conf, id=4c14584fce9a5970 meeting_id=177c43a3-1780-4258-aa23-ca3d7dd29aa5 +regex +([0-9-]+\ [0-9:.]+)\ [A-Z]+:.*\ Videobridge\.createConference#[0-9]+:\ create_conf,\ id=([a-zA-Z0-9]+) + +conference end: +log +JVB 2024-04-01 03:04:24.339 INFO: [18981] [confId=4c14584fce9a5970 conf_name=someroom123@conference.meet.example.com meeting_id=177c43a3] Conference.expire#595: Expiring. +regex +([0-9-]+\ [0-9:.]+)\ [A-Z]+:.*\[confId=([a-zA-Z0-9]+)\ .*conf_name=([^ ]+)@.*\]\ Conference\.expire