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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
爱范儿
爱范儿
H
Help Net Security
V
Visual Studio Blog
J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
Microsoft Security Blog
Microsoft Security Blog
Apple Machine Learning Research
Apple Machine Learning Research
MyScale Blog
MyScale Blog
The Cloudflare Blog
Martin Fowler
Martin Fowler
D
Docker
腾讯CDC
F
Fortinet All Blogs
雷峰网
雷峰网
GbyAI
GbyAI
G
Google Developers Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Recent Announcements
Recent Announcements
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Blog — PlanetScale
Blog — PlanetScale
Engineering at Meta
Engineering at Meta
博客园 - 聂微东
博客园 - 叶小钗

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.