feat: add command to list all monitored urls
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
knoflook 2025-03-04 20:56:11 +01:00
parent 185e2f4fe8
commit a2fc13d45b

View File

@ -1 +1,5 @@
export APP_ENTRYPOINT_VERSION=v2
get_all_urls() {
echo "select url from monitor" | mariadb -u kuma -p$(cat /run/secrets/db_password) -D kuma | sed 's|https://||' | sed 's|/.*||' | sort
}