From 36014518cc5afa2d9ae3c2f15601e3ba1525452a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Sol=C3=ADs?= Date: Fri, 9 May 2025 01:56:24 +0000 Subject: [PATCH] feat: Display Redis data about workerqueue --- friendica-workerqueue.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/friendica-workerqueue.sh b/friendica-workerqueue.sh index 0df20aa..701ef46 100755 --- a/friendica-workerqueue.sh +++ b/friendica-workerqueue.sh @@ -1,2 +1,3 @@ #!/bin/bash sudo mariadb friendica --execute="select distinct command, count(*) from workerqueue where done = 0 group by command; select count(*) from workerqueue where done = 0; select count(*) from workerqueue where command = \"ProcessQueue\" and pid = 0 and done = 0" +sudo redis-cli -n 1 keys '*' | cut -d":" -f2 | cut -d "-" -f 1-3 | sort | uniq -c | sort -n