People who don’t work in tech wouldn’t think observability is important.
It actually is important because it helps you answer questions to which you don’t currently know the answer.
Observability should roughly tell you:
When I browse the Internet, I treat my browsing history as
Instead of tracking down errors, you might want to find:
Limktations
Definitely not programmable notes (yet)
It’s a way of future-proofing your code.
Even if you haven’t thought through every possible way your change could make things go wrong in your system, having good observability gives you the tools to figure out what went wrong after the error already happened.
Logs that tell you exactly what the state of the system was at the time you’re interested in investigating are very helpful.
But even more important is understanding how your system got into the unideal state. This is why many services[^2] that process client requests across multiple machines assign a unique “internal trace ID” to each request, that’s passed along to the next machine in the request lifecycle. This trace ID lets the observer view the complete history of a specific request at a glance and pinpoint when the system entered a bad state, even if the actual error didn’t occur till much later.
[^2]: I only know this definitively for Airtable, but I would be very surprised if this wasn’t widespread.
For all of these use cases, you don’t realize the webpage you were on was actually important until after you’ve already forgotten about it. This is a niche that context-capturing and article-saving tools like Hook – Links beat searching , Pinboard, and Matter will never be able to occupy. All of these apps require that you consciously decide to save/take notes on/capture the context around whatever you come across on the internet, and making that decision for every single tweet/article/page is way too much mental overhead to be sustainable. You will inevitably come across cool stuff that you want to find later, and having search history as an observability tool is perfect for that need.