<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: dudiew</title>
    <description>The latest articles on Forem by dudiew (@rkiilincc).</description>
    <link>https://forem.com/rkiilincc</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3814862%2F20c6bf55-dcd6-4a7f-b0c1-c02818b19fd3.png</url>
      <title>Forem: dudiew</title>
      <link>https://forem.com/rkiilincc</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/rkiilincc"/>
    <language>en</language>
    <item>
      <title>I built a self-hosted daily monitoring bot for Render + Supabase (open source)</title>
      <dc:creator>dudiew</dc:creator>
      <pubDate>Mon, 09 Mar 2026 13:37:15 +0000</pubDate>
      <link>https://forem.com/rkiilincc/i-built-a-self-hosted-daily-monitoring-bot-for-render-supabase-open-source-58d1</link>
      <guid>https://forem.com/rkiilincc/i-built-a-self-hosted-daily-monitoring-bot-for-render-supabase-open-source-58d1</guid>
      <description>&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Every morning I was doing the same thing: opening Render to check if my services were up, then opening Supabase to see how many new users signed up overnight.&lt;/p&gt;

&lt;p&gt;It took 5 minutes. Every day. Manual, repetitive, boring.&lt;/p&gt;

&lt;p&gt;So I built DevPulse.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it does
&lt;/h2&gt;

&lt;p&gt;DevPulse runs on your VPS and sends you a daily report automatically:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Render monitoring:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Service uptime + response time (ping)&lt;/li&gt;
&lt;li&gt;Deploy history with commit messages&lt;/li&gt;
&lt;li&gt;Service status (live / suspended / failed)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Supabase monitoring:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Per-table row counts&lt;/li&gt;
&lt;li&gt;New records in the last 24h&lt;/li&gt;
&lt;li&gt;Recent entries preview&lt;/li&gt;
&lt;li&gt;Storage bucket listing&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Notification channels:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Telegram&lt;/li&gt;
&lt;li&gt;Discord&lt;/li&gt;
&lt;li&gt;Slack&lt;/li&gt;
&lt;li&gt;Email (SMTP)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How it works
&lt;/h2&gt;

&lt;p&gt;Node.js backend + Express. Config stored in a local JSON file — no database setup needed. A simple web dashboard to configure everything.&lt;/p&gt;

&lt;p&gt;You set a daily report time, pick your notification channel, select which Render services and Supabase tables to monitor — and that’s it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Quick start
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/rkiilincc/devpulse.git
&lt;span class="nb"&gt;cd &lt;/span&gt;devpulse/backend
npm &lt;span class="nb"&gt;install
&lt;/span&gt;node server.js
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then open &lt;code&gt;frontend/index.html&lt;/code&gt; in your browser and configure via UI.&lt;/p&gt;

&lt;p&gt;For 24/7 uptime, use PM2:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pm2 start ecosystem.config.js
pm2 save &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; pm2 startup
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Sample report
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;📊 DevPulse Report
🕐 09:00 - 09.03.2026

🚀 Render Services
🟢 my-api — 142ms
   ✅ Last deploy: live — "fix: auth bug"

🗄 Supabase Tables
📋 waitlist
   👥 Total: 247 rows
   📈 Last 24h: +12 new
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Why open source?
&lt;/h2&gt;

&lt;p&gt;I built this for my own SaaS. It solved a real problem for me, so I figured other solo founders on the same stack might find it useful too.&lt;/p&gt;

&lt;p&gt;Free, MIT license.&lt;/p&gt;

&lt;p&gt;→ GitHub: &lt;a href="https://github.com/rkiilincc/devpulse" rel="noopener noreferrer"&gt;https://github.com/rkiilincc/devpulse&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Feedback welcome — what would you add?&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>node</category>
    </item>
  </channel>
</rss>
