<?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>DEV Community: Om Uphade</title>
    <description>The latest articles on DEV Community by Om Uphade (@omuphade).</description>
    <link>https://dev.to/omuphade</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3822500%2Fe4b3fed3-990d-41e8-9134-c71f284dbf12.jpg</url>
      <title>DEV Community: Om Uphade</title>
      <link>https://dev.to/omuphade</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/omuphade"/>
    <language>en</language>
    <item>
      <title>Fixing a 20s Kubernetes API Lag in 15 Minutes with OpenTelemetry</title>
      <dc:creator>Om Uphade</dc:creator>
      <pubDate>Sun, 19 Jul 2026 17:56:43 +0000</pubDate>
      <link>https://dev.to/omuphade/fixing-a-20s-kubernetes-api-lag-in-15-minutes-with-opentelemetry-n4m</link>
      <guid>https://dev.to/omuphade/fixing-a-20s-kubernetes-api-lag-in-15-minutes-with-opentelemetry-n4m</guid>
      <description>&lt;p&gt;Our Kubernetes API was suddenly taking 20 seconds to respond, but traditional pod metrics showed healthy CPU and memory. I needed true observability to find the root cause without rewriting code or paying Datadog's $0.05 per custom metric surcharge. &lt;/p&gt;

&lt;p&gt;I chose SigNoz for a unified metrics, logs, and traces backend, and the OpenTelemetry Operator to auto-instrument our cluster.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Setup
&lt;/h3&gt;

&lt;p&gt;First, I installed SigNoz directly into our cluster using Helm:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;helm repo add signoz https://charts.signoz.io
kubectl create ns platform
helm &lt;span class="nt"&gt;--namespace&lt;/span&gt; platform &lt;span class="nb"&gt;install &lt;/span&gt;my-release signoz/signoz
Next, to get data flowing without touching our Java &lt;span class="nb"&gt;source &lt;/span&gt;code, I installed the OpenTelemetry Operator and simply added this annotation to our application&lt;span class="s1"&gt;'s deployment manifest:
template:
  metadata:
    annotations:
      instrumentation.opentelemetry.io/inject-java: "true"
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The Fix&lt;br&gt;
Almost instantly, traces populated the SigNoz dashboard.&lt;br&gt;
The trace proved the database was responding in single-digit milliseconds. The delay was happening before the database call. By clicking from the trace straight into the correlated JVM metrics, I saw application threads were deadlocking waiting for asynchronous external responses. We patched the thread pool logic, and response times dropped back to milliseconds.&lt;br&gt;
Takeaway&lt;br&gt;
Auto-instrumentation via Kubernetes annotations is a superpower. Standardizing on OpenTelemetry saves weeks of engineering time and stops vendor lock-in. Don't guess why your app is slow—trace it.&lt;/p&gt;

</description>
      <category>opentelemetry</category>
      <category>signoz</category>
      <category>kubernetes</category>
    </item>
  </channel>
</rss>
