<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Monitor scripts&#x2F;apps and take advantage of (mobile) notifications]]></title><description><![CDATA[<p dir="auto">I've only been using it for Pull type monitoring, so far.</p>
<p dir="auto">Until today, I just discovered one can add a new monitor type called Push.</p>
<p dir="auto">This provides you a Push URL like this (Optional parameters: status, msg, ping):<br />
<a href="https://uptimekuma.1heal.org/api/push/U20C3xxxx?status=up&amp;msg=OK&amp;ping=" target="_blank" rel="noopener noreferrer nofollow ugc">https://uptimekuma.1heal.org/api/push/U20C3xxxx?status=up&amp;msg=OK&amp;ping=</a></p>
<p dir="auto">So a script output, like cronjobs can be monitored like this:</p>
<pre><code>#!/bin/bash
# Filename: index.sh
PUSH_URL="https://example.com/api/push/key?status=up&amp;msg=OK&amp;ping="
INTERVAL=3600

while true; do
    curl -s -o /dev/null $PUSH_URL
    echo "Pushed!"
    sleep $INTERVAL
done
</code></pre>
<p dir="auto">Even apps and containers starting up..</p>
<p dir="auto">And preventative disk usage checking and other stats which <a class="plugin-mentions-group plugin-mentions-a" href="/groups/staff" aria-label="Profile: staff">@<bdi>staff</bdi></a> could integrate with Cloudron to send Push messages via Uptime Kuma.</p>
<p dir="auto">Since I already use it for monitoring websites, I get to piggyback on the free notifications too!</p>
]]></description><link>https://forum.cloudron.io/topic/11073/monitor-scripts-apps-and-take-advantage-of-mobile-notifications</link><generator>RSS for Node</generator><lastBuildDate>Thu, 05 Mar 2026 23:50:45 GMT</lastBuildDate><atom:link href="https://forum.cloudron.io/topic/11073.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 10 Feb 2024 20:40:30 GMT</pubDate><ttl>60</ttl></channel></rss>