<?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>DEV Community: Rehaan Khan</title>
    <description>The latest articles on DEV Community by Rehaan Khan (@rak2315).</description>
    <link>https://dev.to/rak2315</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%2F3943539%2F0dff0c4d-d353-45dc-a268-c8b53856ab46.jpg</url>
      <title>DEV Community: Rehaan Khan</title>
      <link>https://dev.to/rak2315</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rak2315"/>
    <language>en</language>
    <item>
      <title>I built my own uptime monitor because UptimeRobot felt cluttered - here's what I learned</title>
      <dc:creator>Rehaan Khan</dc:creator>
      <pubDate>Thu, 21 May 2026 07:31:32 +0000</pubDate>
      <link>https://dev.to/rak2315/i-built-my-own-uptime-monitor-because-uptimerobot-felt-cluttered-heres-what-i-learned-5ed2</link>
      <guid>https://dev.to/rak2315/i-built-my-own-uptime-monitor-because-uptimerobot-felt-cluttered-heres-what-i-learned-5ed2</guid>
      <description>&lt;h1&gt;
  
  
  I built my own uptime monitor because UptimeRobot felt cluttered — here's what I learned
&lt;/h1&gt;

&lt;h2&gt;
  
  
  The problem
&lt;/h2&gt;

&lt;p&gt;I've been using UptimeRobot for a while. It works, but every time I opened it I felt like I was looking at a dashboard designed for enterprise teams. I just wanted to know: is my site up? If not, tell me. That's it.&lt;/p&gt;

&lt;p&gt;So I built my own.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I built
&lt;/h2&gt;

&lt;p&gt;PingBoard — uptime monitoring with public status pages. Monitors URLs on a schedule, sends alerts when things go down, and generates a clean shareable status page for your users.&lt;/p&gt;

&lt;p&gt;5 monitor types: HTTP, keyword, DNS, API, and heartbeat.&lt;/p&gt;

&lt;h2&gt;
  
  
  The stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Next.js 14&lt;/strong&gt; App Router + TypeScript&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Convex&lt;/strong&gt; — backend, DB, cron jobs, realtime subscriptions&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Clerk&lt;/strong&gt; — auth&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Resend&lt;/strong&gt; — email alerts&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Lemon Squeezy&lt;/strong&gt; — payments (Stripe isn't available in India)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Framer Motion&lt;/strong&gt; — animations&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The interesting parts
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Realtime status pages without WebSockets
&lt;/h3&gt;

&lt;p&gt;Convex's reactive queries mean the public status page updates instantly when a monitor goes down — no polling, no manual WebSocket management. Just a &lt;code&gt;useQuery&lt;/code&gt; hook and it works.&lt;/p&gt;

&lt;h3&gt;
  
  
  The ping loop
&lt;/h3&gt;

&lt;p&gt;A Convex cron fires every 30 seconds, finds monitors that are due for a check, and schedules individual check actions per monitor. Each check runs independently — one slow site doesn't block others.&lt;/p&gt;

&lt;h3&gt;
  
  
  Heartbeat monitoring
&lt;/h3&gt;

&lt;p&gt;Instead of PingBoard pinging your service, your service pings PingBoard. Useful for cron jobs and background workers. If PingBoard doesn't hear from your job within the expected interval × 1.5, it opens an incident.&lt;/p&gt;

&lt;h3&gt;
  
  
  Payments from India
&lt;/h3&gt;

&lt;p&gt;Stripe isn't available in India so I went with Lemon Squeezy. Acts as merchant of record — handles VAT, GST, tax compliance automatically. Checkout was live in a day.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I'd do differently
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Started with Convex from day one — initially considered Supabase but switched early and never looked back&lt;/li&gt;
&lt;li&gt;Underestimated how much time auth takes — Clerk saved probably 2 weekends&lt;/li&gt;
&lt;li&gt;Should have verified the Resend domain earlier (still in sandbox mode — alerts only reach verified addresses)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Where it is now
&lt;/h2&gt;

&lt;p&gt;Live at &lt;a href="https://ping-board-monitor.vercel.app" rel="noopener noreferrer"&gt;ping-board-monitor.vercel.app&lt;/a&gt;. Free tier, no credit card. Built for myself, a friend convinced me to open it up.&lt;/p&gt;

&lt;p&gt;Would love feedback — especially from devs who've felt the same frustration with existing tools.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>nextjs</category>
      <category>buildinpublic</category>
      <category>saas</category>
    </item>
  </channel>
</rss>
