<?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: Manideep Sale</title>
    <description>The latest articles on DEV Community by Manideep Sale (@medinz01).</description>
    <link>https://dev.to/medinz01</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%2F3809817%2Fd2508221-e903-4da3-8b83-f961951a9f65.png</url>
      <title>DEV Community: Manideep Sale</title>
      <link>https://dev.to/medinz01</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/medinz01"/>
    <language>en</language>
    <item>
      <title>Question for teams doing chaos engineering: how do you choose experiment targets?</title>
      <dc:creator>Manideep Sale</dc:creator>
      <pubDate>Sun, 08 Mar 2026 15:34:31 +0000</pubDate>
      <link>https://dev.to/medinz01/question-for-teams-doing-chaos-engineering-how-do-you-choose-experiment-targets-4b4d</link>
      <guid>https://dev.to/medinz01/question-for-teams-doing-chaos-engineering-how-do-you-choose-experiment-targets-4b4d</guid>
      <description>&lt;p&gt;While working on a side project related to service reliability, I ran into a question that I’m curious about from people actually running chaos experiments.&lt;/p&gt;

&lt;p&gt;Most chaos engineering discussions focus on the types of experiments (latency injection, pod failure, network faults, etc.).&lt;/p&gt;

&lt;p&gt;But something less obvious is how teams choose where to run experiments in the first place.In a system with many microservices, there are lots of possible targets.&lt;/p&gt;

&lt;p&gt;Do teams typically:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;rotate through services over time&lt;/li&gt;
&lt;li&gt;prioritize ones that caused incidents&lt;/li&gt;
&lt;li&gt;focus on critical dependency paths&lt;/li&gt;
&lt;li&gt;rely on platform/SRE intuition&lt;/li&gt;
&lt;li&gt;something else?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Interested to hear how this works in real environments.&lt;/p&gt;

</description>
      <category>devops</category>
      <category>discuss</category>
      <category>microservices</category>
      <category>sre</category>
    </item>
    <item>
      <title>Why Your Chaos Experiments Are Probably Wasting Time (and How to Fix It)</title>
      <dc:creator>Manideep Sale</dc:creator>
      <pubDate>Fri, 06 Mar 2026 12:49:51 +0000</pubDate>
      <link>https://dev.to/medinz01/why-your-chaos-experiments-are-probably-wasting-time-and-how-to-fix-it-420b</link>
      <guid>https://dev.to/medinz01/why-your-chaos-experiments-are-probably-wasting-time-and-how-to-fix-it-420b</guid>
      <description>&lt;p&gt;You have 20 microservices. You want to run chaos experiments. Where do you start?&lt;/p&gt;

&lt;p&gt;If your answer is "the payment service" — why? Because it feels important? Because it failed last week? Because LitmusChaos defaulted to it?&lt;/p&gt;

&lt;p&gt;Most teams pick chaos targets the same way they pick where to eat lunch — gut feel, recent memory, or whoever spoke loudest in the meeting. That's fine when you're running 2 services. It breaks down fast when you're running 20.&lt;/p&gt;




&lt;h2&gt;
  
  
  The actual problem
&lt;/h2&gt;

&lt;p&gt;Chaos engineering has a prioritization gap. The tooling is excellent at &lt;em&gt;how&lt;/em&gt; to break things — LitmusChaos, Chaos Mesh, Gremlin all do this well. None of them tell you &lt;em&gt;what&lt;/em&gt; to break next.&lt;/p&gt;

&lt;p&gt;The result: teams either test the same high-visibility services repeatedly, or they run random experiments and hope they hit something real. Both approaches leave systematic gaps.&lt;/p&gt;

&lt;p&gt;The framing that fixed this for me came from fault tree analysis:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;risk = impact × likelihood
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Impact&lt;/strong&gt; — if this service degrades, how many others are affected?&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Likelihood&lt;/strong&gt; — based on history, how probable is a failure?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A payment service with 15 downstream dependents and a clean incident history is a different risk than an auth service with 3 dependents and 5 high-severity incidents this month. Treating them identically isn't principled chaos engineering — it's just noise.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I built
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/Medinz01/chaosrank" rel="noopener noreferrer"&gt;ChaosRank&lt;/a&gt; takes your Jaeger trace export and incident history and produces a ranked list of services to target next, with a suggested fault type and confidence level for each.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Rank  Service           Risk   Blast  Fragility  Suggested Fault     Confidence
1     payment-service   0.91   0.88   0.96       partial-response    high
2     auth-service      0.84   0.79   0.91       latency-injection   high
3     inventory-service 0.71   0.82   0.54       pod-failure         medium
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Blast radius&lt;/strong&gt; is computed from your dependency graph — blended PageRank and in-degree centrality. PageRank captures transitive failure propagation. In-degree captures direct dependents. Neither alone is sufficient: a shallow-wide hub (payment called by 10 services) scores differently from a deep chain (A→B→C→D→E), but both are high-risk.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Fragility&lt;/strong&gt; is where the interesting engineering lives. The naive approach — count incidents, divide by traffic — produces ranking inversions at high traffic differentials. A service with 5x more incidents can rank &lt;em&gt;below&lt;/em&gt; a quieter one if you normalize after aggregation. The fix is per-incident normalization: evaluate each event in its own traffic context before aggregating. Order matters.&lt;/p&gt;




&lt;h2&gt;
  
  
  Does it actually work?
&lt;/h2&gt;

&lt;p&gt;I evaluated it on the DeathStarBench social-network topology (31 services) from the UIUC/FIRM dataset, a published research dataset with real microservice call graphs and anomaly injection traces.&lt;/p&gt;

&lt;p&gt;The result across 20 trials:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Metric&lt;/th&gt;
&lt;th&gt;ChaosRank&lt;/th&gt;
&lt;th&gt;Random&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Mean experiments to first weakness&lt;/td&gt;
&lt;td&gt;1.0&lt;/td&gt;
&lt;td&gt;9.8&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Mean experiments to all weaknesses&lt;/td&gt;
&lt;td&gt;3.0&lt;/td&gt;
&lt;td&gt;23.2&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9uwmy0kavvwe7o7r24e4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9uwmy0kavvwe7o7r24e4.png" alt="Discovery curve — cumulative weaknesses found vs experiments run. 20 trials, DeathStarBench social-network (31 services)." width="800" height="476"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;9.8x faster to the first real weakness. That's the mean across 20 trials with seeded weaknesses placed based on structural importance and incident history.&lt;/p&gt;




&lt;h2&gt;
  
  
  The honest limitations
&lt;/h2&gt;

&lt;p&gt;ChaosRank builds its graph from synchronous Jaeger spans. If your architecture is heavily event-driven — Kafka, SQS, async choreography — your blast radius scores will be wrong. A Kafka producer consumed by 10 downstream services shows zero dependents in trace data. That's a ranking inversion, not just a missing feature. A warning fires at startup when async messaging services are detected.&lt;/p&gt;

&lt;p&gt;It also only reads Jaeger JSON today. OTel OTLP is next.&lt;/p&gt;




&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install &lt;/span&gt;chaosrank-cli
git clone https://github.com/Medinz01/chaosrank
&lt;span class="nb"&gt;cd &lt;/span&gt;chaosrank
chaosrank rank &lt;span class="nt"&gt;--traces&lt;/span&gt; benchmarks/real_traces/social_network.json &lt;span class="nt"&gt;--incidents&lt;/span&gt; benchmarks/real_traces/social_network_incidents.csv
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; Two warnings will fire against the included sample data — a phantom node warning for &lt;code&gt;nginx-compose-post&lt;/code&gt; (expected, it's an entry point with no callers) and a signal misalignment warning (expected, the benchmark dataset has uniform incident severity by design). With your own incident history these warnings won't fire.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The output pipes directly to LitmusChaos:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;chaosrank rank &lt;span class="nt"&gt;--output&lt;/span&gt; litmus | kubectl apply &lt;span class="nt"&gt;-f&lt;/span&gt; -
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If you're running chaos experiments and want to talk through whether this fits your setup — particularly if you have async dependencies — I'm around in the comments.&lt;/p&gt;

</description>
      <category>devops</category>
      <category>sre</category>
      <category>chaosengineering</category>
      <category>python</category>
    </item>
  </channel>
</rss>
