惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

A
About on SuperTechFans
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 司徒正美
宝玉的分享
宝玉的分享
美团技术团队
量子位
The Cloudflare Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
IT之家
IT之家
爱范儿
爱范儿
J
Java Code Geeks
博客园 - Franky
Last Week in AI
Last Week in AI
B
Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
GbyAI
GbyAI
Recent Announcements
Recent Announcements
小众软件
小众软件
H
Help Net Security
Microsoft Azure Blog
Microsoft Azure Blog
MyScale Blog
MyScale Blog

HN's home page

Rainbow Query Language | Hacker News Exec into Node via Kubectl An AI native hedge fund The Seven-Action Documentation Model | Hacker News Package Manager for Kubectl Plugins Tongan Castaways | Hacker News Tech overlords plan for conscious AI to conquer the cosmos. What could go wrong? Data Breach Disclosure Lag Is Getting Worse How LLMs Work | Hacker News I Dropped PRDs for Shape Up Go Experiments Explained | Hacker News FCA's Palantir deal could expose UK financial data to Trump's US, critics fear WebXR BCI for Neural-Adaptive Avatar Control in Mixed Reality The first murder conviction via DNA analysis Tom Interviews Theo de Raadt of the OpenBSD Project (2019) [video] Show HN: Replace shell commands with bun shell typescript scripts Quay.io Is Down | Hacker News AI driven analysis of brokerage account fees in the UK Bill Gates Spent Years Crafting His Image. Now It's Cracking Using LLMs to secure source code Wi-Fi 8 in the Lab [video] The household battery revolution that could change energy bills and the world Is Python Becoming Pinyin? | Hacker News Livia – Executive Assistant | Hacker News FindMyPipe – Query Apple Find My from Linux for AI Agents Show HN: Agent skill for creating product launch videos with Remotion RecruitMyself – AI job search copilot for resumes and applications AI coding agents and the erosion of system understanding The 'Resting' Generation and South Korea's Youth Recession AMD Computex 2026: 10 Years of AM4, AM5 Support Through 2029
Show HN: DomainDash – uptime/SSL/domain checks for client...
edcs · 2026-06-23 · via HN's home page

I built DomainDash because I needed a service which checks uptime, SSL and domain expiration for the client sites that I run. Also, in my time as a contractor, I've worked for multiple companies who have had serious outages caused by an expired SSL cert that someone has forgotten about (one of them was a FTSE 50 and their ecom went down for like a day).

I know there are a lot of existing products out there which do this already, but I wanted to have a go at it myself for a few reasons:

- I wanted to learn about multi-region AWS and Lambdas - I thought I could put my own spin on it - the focus is plain English explanations, not pages of data - Like a lot of developers, I have a graveyard of side project domain names which don't do anything. So I really wanted to see if I could follow something through (I registered this domain in like 2022 when that FTSE 50 company had their outage and the idea properly came to fruition in my mind).

The stack is quite interesting - it's a Laravel based web app which acts as the control plane. The checks are tiny Rust based Lambdas which are deployed to multiple AWS regions, giving it a global viewpoint. The Laravel app dispatches the Lambda via scheduled, queued jobs and the Lambdas report back via signed webhooks (which just receive the check data and pop it onto a queue for async processing). No cross-region DB connection issues or connection limits to deal with that way. It uses TimescaleDB and hypertables for the check results - each domain with 1min uptime and the other checks we run writes a few thousand rows per day, so we need to handle this volume properly.

It's early stage right now - 3 customers and it's run about 1.8m checks so far.