<?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>Forem: Dakshin G</title>
    <description>The latest articles on Forem by Dakshin G (@dakshin_g).</description>
    <link>https://forem.com/dakshin_g</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%2F3901069%2F7783bfc6-eaa4-49c5-b0d7-88b955741732.jpg</url>
      <title>Forem: Dakshin G</title>
      <link>https://forem.com/dakshin_g</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/dakshin_g"/>
    <language>en</language>
    <item>
      <title>Stop Debugging in the Dark: The "Day Zero" Observability Checklist</title>
      <dc:creator>Dakshin G</dc:creator>
      <pubDate>Sat, 09 May 2026 06:20:51 +0000</pubDate>
      <link>https://forem.com/dakshin_g/stop-debugging-in-the-dark-the-day-zero-observability-checklist-5g7e</link>
      <guid>https://forem.com/dakshin_g/stop-debugging-in-the-dark-the-day-zero-observability-checklist-5g7e</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;I recently read a fascinating post by &lt;strong&gt;Picnic Engineering&lt;/strong&gt; titled "&lt;a href="https://blog.picnic.nl/bringing-observability-to-the-workstation-3d3233ef3a14" rel="noopener noreferrer"&gt;Bringing Observability to the Workstation&lt;/a&gt;." It’s a great reminder that "clean code" isn't enough if you have zero visibility into your production environment.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;In our fast-paced industry, we often prioritize shipping features over building insights. We tell ourselves we’ll add monitoring "later," only to find ourselves blind when the first production incident occurs.&lt;/p&gt;

&lt;p&gt;Waiting for a bug to happen before setting up observability is a high-stakes gamble. It is always better to establish a "bare minimum" layer from the start.&lt;/p&gt;

&lt;p&gt;As &lt;em&gt;Eric Smith&lt;/em&gt; mentioned in the blog:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"&lt;em&gt;That is the main reason developers spend — or should spend — so much time on observability: eliminating the mystery and providing clear direction for problem resolution.&lt;/em&gt;"&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;If you are building a distributed system - especially one that interacts with edge hardware - here is your non-negotiable checklist.&lt;/p&gt;

&lt;h3&gt;
  
  
  1. The "Deep" Health Check
&lt;/h3&gt;

&lt;p&gt;Health checks tell you the immediate state of the system. A standard 200 OK only tells you the process is running; it doesn't tell you if the app is useful.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Create a &lt;em&gt;/health&lt;/em&gt; endpoint that checks the app health as well as its dependencies.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  2. Centralized Logging
&lt;/h3&gt;

&lt;p&gt;Tailing logs using SSH is a nightmare for developers. Use a centralized logger like Datadog or Cloudwatch. SSH should be your "break glass" solution for network partitions only.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Use a log shipper (like Fluentd or the Datadog Agent) to constantly stream logs and metrics to your watchdog servers.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  3. Hardware Metrics
&lt;/h3&gt;

&lt;p&gt;Systems often grind to a halt due to high CPU usage, memory leaks, or disk I/O saturation. Without metrics, these failures look like "random" logic bugs.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Tracking system resources allows you to spot a memory leak days before the application actually crashes.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  4. Alarms &amp;amp; Alerts
&lt;/h3&gt;

&lt;p&gt;Dashboards are for history; alerts are for action.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Set alerts for continuous high CPU Usage, Memory Usage, App-level exceptions and more.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  5. Heartbeat Monitoring
&lt;/h3&gt;

&lt;p&gt;In distributed systems, the most common failure is "silence." If a node loses its internet connection, it can't send a "fail" log - it just disappears.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Solution&lt;/strong&gt;: Each node sends a "pulse" to a central monitor. If the pulse stops, you know immediately that you have a network partition or a power failure, even if the node itself is unable to tell you.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;By implementing this bare-minimum stack, you move away from "guessing" and toward "knowing."&lt;/p&gt;

&lt;p&gt;What other metrics should make the list, please comment your thoughts below.&lt;/p&gt;

</description>
      <category>monitoring</category>
      <category>devops</category>
      <category>architecture</category>
      <category>observability</category>
    </item>
    <item>
      <title>Design, Build, Learn: An Engineer's Loop</title>
      <dc:creator>Dakshin G</dc:creator>
      <pubDate>Tue, 05 May 2026 03:26:26 +0000</pubDate>
      <link>https://forem.com/dakshin_g/design-build-learn-an-engineers-loop-mh3</link>
      <guid>https://forem.com/dakshin_g/design-build-learn-an-engineers-loop-mh3</guid>
      <description>&lt;p&gt;We’ve all built "perfect" systems, only for a single overlooked detail to turn into a production nightmare.&lt;/p&gt;

&lt;p&gt;I’ve spent my career building, breaking, and fixing things. I’m starting this space to share those experiences, because I believe the best way to master a concept is to learn from mistakes.&lt;/p&gt;

&lt;p&gt;I’ll be focusing on three main series:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. War Stories&lt;/strong&gt;&lt;br&gt;
Personal post-mortems and curated extracts from the best engineering blogs. We’ll analyze real-world disasters — mine and others' to learn how to avoid the same potholes.&lt;br&gt;
&lt;strong&gt;2. Under the Hood&lt;/strong&gt;&lt;br&gt;
Opening the "black boxes." We’ll peel back the layers of abstraction on the tools we use every day to see how they actually work.&lt;br&gt;
&lt;strong&gt;3. General Tech Discussions&lt;/strong&gt;&lt;br&gt;
High-level talks on industry trends, new tools, and the "meta" side of engineering culture.&lt;/p&gt;

&lt;p&gt;I’d love your input: Which of these series sounds most useful to you? Or is there a specific technology you’ve always wanted to see dismantled?&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;strong&gt;Drop a comment below and let’s dive in!&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>architecture</category>
      <category>discuss</category>
      <category>softwareengineering</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
