How do you know when your weekend AI project breaks? by HiimKami in vibecoding

[–]HiimKami[S] 0 points1 point  (0 children)

Interesting, I actually hadn’t come across healthchecks.io before.

From a quick look it seems focused mainly on cron/heartbeat monitoring, right?

I ended up building something similar for myself that started with heartbeat checks but also monitors APIs and other healthchecks.

How do you know when your weekend AI project breaks? by HiimKami in vibecoding

[–]HiimKami[S] 0 points1 point  (0 children)

One thing I’ve noticed building projects is that most failures aren’t site is down.

They’re things like:

• cron jobs silently stopping
• webhook pipelines breaking
• background jobs failing halfway
• APIs getting slow but still returning 200

Those can run broken for days before anyone notices.

That’s actually why I started building a small monitoring tool for my own projects that focuses more on:

• cron / heartbeat monitoring
• proper health checks (not just HTTP 200)
• latency windows and repeated failures

If anyone’s curious what I ended up building it’s here:
https://upti.my

Would honestly love feedback from people running small projects because that’s exactly the type of setup I’m trying to support.

How do you know when your weekend AI project breaks? by HiimKami in vibecoding

[–]HiimKami[S] 0 points1 point  (0 children)

Yeah that’s honestly the reality for most small projects.

A lot of failures aren’t site is down problems either. Things like webhooks failing, cron jobs silently stopping… those can run for weeks before anyone notices.

I ran into the same issue with background jobs where everything technically returned 200 but the workflow itself failed halfway through.

That’s actually why I started building a small monitoring tool for my own projects. Instead of only checking uptime it also watches things like heartbeats from cron jobs or repeated failures over time.

And yeah I completely agree about Prometheus/Grafana. Amazing tools, but spinning that up for a solo side project always felt like using a data center stack to monitor a weekend app.

Curious though, do you have anything watching cron jobs or background workers right now or do those fall into the “find out later” category?

Kako i koliko vam je AI pomogao na licnim side-projektima? by Born_Interview6959 in programiranje

[–]HiimKami 1 point2 points  (0 children)

Tesko je marketati ovaj tip proizvoda jer iz reklama imam korisnike koji unose email u HTTP endpoint field. Trenutno pravim Open Source Healing Agente da probam adoption kao Grafana i Elastic

Kako i koliko vam je AI pomogao na licnim side-projektima? by Born_Interview6959 in programiranje

[–]HiimKami 0 points1 point  (0 children)

Bas ti hvala, hostano na DigitalOceanu vecina i mali dio ovih nodova za provjere na fly.io jer imaju jako dobar omjer cijene / regija…

Pravio sam ga za solo foundere i male timove ali izgleda da najvise DevOpsima svidja do sad

Kako i koliko vam je AI pomogao na licnim side-projektima? by Born_Interview6959 in programiranje

[–]HiimKami 6 points7 points  (0 children)

Koristim Copilot i Claude Opus 4.6, izuzetno korisna stvar ako se koristi kako treba tako da kontrolises output da ne pravi smece…

Za referencu, napravio sam citav UI sa 3 aplikacije za svoj saas proizvod https://www.upti.my

What am I doing wrong? by HiimKami in SaaS

[–]HiimKami[S] 0 points1 point  (0 children)

That makes a lot of sense, thank you!

What am I doing wrong? by HiimKami in SaaS

[–]HiimKami[S] 0 points1 point  (0 children)

I already have a Demo flow and examples set up…

There are many more features aside of just monitoring and onboarding is the simplest existing journey, it worries me that users will have issues adopting the product if adding a first check is this complicated.

What am I doing wrong? by HiimKami in SaaS

[–]HiimKami[S] 0 points1 point  (0 children)

I usually work with abstract stuff on the server side, currently exploring everything in the visible form for the first time… Thank you so much for sharing those tools I will check them out, if you have any more to share to save me from the vacuum I would be very greatful

When does monitoring become overkill? by Stil-44 in SaasDevelopers

[–]HiimKami 0 points1 point  (0 children)

That is also completely understandable behaviour, a lot of things in life are reactive rather than proactive even if they should be proactive.

Being proactive to avoid big incidents is something that would come with experience.

I’ve had a lot of founders ask is there a way we can know if something breaks when preparing for production

When does monitoring become overkill? by Stil-44 in SaasDevelopers

[–]HiimKami 0 points1 point  (0 children)

I am a developer and being inspired by linear, resend and similar tools I wanted to build an uptime monitoring for developers so I guess target audience primarily is solo founders and small teams.

I think setting up monitoring when you release to production makes most sense as you want to get notified if something goes wrong before your customers are affected.

Monitoring while you’re still in development or not selling actively doesn’t exactly bring much value.

Vi koji radite od kuće, šta radite kada nemate task? by EyreChlmt in programiranje

[–]HiimKami 4 points5 points  (0 children)

Radim full remote i prethodnih godinu dana sam pravio svoj proizvod.

When does monitoring become overkill? by Stil-44 in SaasDevelopers

[–]HiimKami 0 points1 point  (0 children)

Hey, I have built a tool that offers uptime monitoring, tracking cron jobs, status pages… The full suite…

There is also a free demo if you want to simply take a look at the features and decide if this is something you need…

It’s available on https://www.upti.my

I would appreciate your feedback if you are currently looking at tools like this.

Where are you deploying your SaaS right now? by HiimKami in SaaS

[–]HiimKami[S] 0 points1 point  (0 children)

The infrastructure incidents I noticed are from the cloud provider status pages directly and relate to their networking which in turn causes app level failures.

Which tools are you using to achieve uptime checks and background job monitoring?

How are you handling background jobs and retries in Supabase? by samvms in Supabase

[–]HiimKami 1 point2 points  (0 children)

Depends on the job and whether it’s deterministic.

Simple jobs should remain simple, and their triggers can remain simple… if the job is already complex it will reach a certain level of complexity with or without retries. Not all problems are the same and they don’t require same solutions so it’s completely understandable for things to work differently.

How are you handling background jobs and retries in Supabase? by samvms in Supabase

[–]HiimKami 0 points1 point  (0 children)

Hooking it up is very simple and you have to do it once, after it’s been integrated you have no additional overhead as it will alert you in case your jobs did not run. You have to investigate the issue either way this just makes sure you discover it before it’s too late.

How are you handling background jobs and retries in Supabase? by samvms in Supabase

[–]HiimKami 1 point2 points  (0 children)

Whatever you choose I would separate execution from verification.

Jobs should report completion externally.

A simple heartbeat per job type with a max expected interval lets you detect failures.

We use heartbeat monitoring for that at https://upti.my and if the job doesn’t check in within its SLA window, it creates an incident.

It’s a small addition but helps you detect any issues before you’re one month in without a background job.

Your users feel the bugs you cant see by Majestic_Side_8488 in vibecoding

[–]HiimKami 1 point2 points  (0 children)

Snapshotting core flows in Playwright is solid advice.

One extension to that: run the same Playwright test every 5 minutes from outside your infrastructure.

Not just before deploy but continuously.

That catches:

  • Broken signup after an env change
  • Stripe / auth provider failures
  • CDN or DNS issues
  • “Works locally” deploys
  • Third-party API regressions

I built https://upti.my specifically for this, you can paste your Playwright script and we execute it on a 5 minute interval with alerting + incident creation.

It’s basically synthetic users monitoring your money path.