0Pricing
Production Debugging & Incident Response Playbook · Lesson

Tools and Platforms for Chaos Experiments

Explore various tools (e.g., Chaos Monkey, LitmusChaos) that facilitate the controlled injection of failures into systems.

Tools and Platforms for Chaos Experiments is a free Production Debugging & Incident Response Playbook lesson on CoddyKit — lesson 2 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Production Debugging & Incident Response Playbook learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.

Specialized Tools for Controlled Chaos

Chaos Engineering isn't just about randomly breaking things; it's a scientific and controlled approach to testing system resilience.

To achieve this control and make experiments repeatable, specialized tools are essential. They help you systematically inject faults, observe system behavior, and validate that your systems can withstand unexpected failures.

Different Flavors of Failure Injection

Chaos engineering tools often specialize in different areas or environments. We can generally categorize them by their primary function:

  • Fault Injectors: Directly introduce specific failures (e.g., killing processes, delaying network traffic).
  • Orchestrators: Manage the entire experiment lifecycle, including scheduling, monitoring, and rollback.
  • Platform-Specific: Designed for particular cloud providers (AWS, Azure, GCP) or container orchestration platforms like Kubernetes.

Chaos Monkey: The Pioneer

Chaos Monkey, created by Netflix, is arguably the most well-known chaos engineering tool. It's designed to randomly disable production instances (virtual machines or containers).

The core idea is simple: if you know instances will disappear at any moment, you are forced to build systems that can tolerate and recover from such failures gracefully.

How Chaos Monkey Operates

Chaos Monkey works by:

  • Identifying groups of instances (e.g., an auto-scaling group in AWS).
  • Randomly selecting an instance from that group.
  • Terminating it after a configured delay, mimicking an unexpected crash or outage.

This forces engineers to ensure their services can automatically recover and continue functioning even when parts of the infrastructure fail.

Introducing LitmusChaos

LitmusChaos is an open-source Chaos Engineering platform specifically built for Kubernetes environments. It allows developers and Site Reliability Engineers (SREs) to practice chaos engineering in a Kubernetes-native way.

You can use LitmusChaos to inject various types of chaos into applications and infrastructure components running on your Kubernetes clusters, testing their resilience.

LitmusChaos Experiment Workflow

With LitmusChaos, you define chaos experiments using Kubernetes Custom Resources (CRs). These CRs are like blueprints that specify:

  • The type of fault to inject (e.g., deleting a pod, introducing network delay).
  • The target application or infrastructure component.
  • The duration and scope of the experiment.

LitmusChaos provides a control plane to manage, schedule, and monitor these experiments directly from your Kubernetes cluster.

Gremlin: Failure as a Service

Gremlin is a commercial "Failure as a Service" platform that offers a comprehensive suite of chaos experiments. It provides a user-friendly interface and API to inject various types of "attacks" into your systems.

Gremlin aims to make chaos engineering accessible and safe for enterprises, allowing them to proactively discover weaknesses before they impact customers.

Types of Gremlin Attacks

Gremlin categorizes its attacks to simulate common real-world failure modes:

  • Resource Attacks: Exhaust CPU, memory, disk I/O, or network bandwidth on a system.
  • Network Attacks: Introduce latency, packet loss, or block traffic to specific services.
  • State Attacks: Kill processes, shut down hosts, or cause time drift.

These diverse attack types allow for targeted testing of specific system vulnerabilities.

Choosing the Right Tool

Selecting a chaos engineering tool depends on your specific needs and environment. Consider these factors:

  • Environment: Is your infrastructure primarily Kubernetes, cloud VMs, or bare metal?
  • Complexity: Do you need simple instance termination or complex network and resource attacks?
  • Open-Source vs. Commercial: Evaluate budget, required support, and advanced features.
  • Integration: How well does it integrate with your existing CI/CD pipelines, monitoring, and alerting systems?

Chaos Tools Check

We've explored several tools for chaos engineering, each with unique strengths and focuses. Let's test your understanding.

Recap: Tools for Intentional Chaos

In this lesson, we explored key tools that enable effective Chaos Engineering.

We learned about Chaos Monkey, a pioneer in random instance termination, and LitmusChaos for Kubernetes-native chaos experiments. We also covered Gremlin, a commercial "Failure as a Service" platform offering diverse attack types.

These tools are essential for systematically testing and building resilience into your systems, transforming potential outages into learning opportunities.

Frequently asked questions

Is the “Tools and Platforms for Chaos Experiments” lesson free?

Yes — the full text of “Tools and Platforms for Chaos Experiments” is free to read here on the web, and the Production Debugging & Incident Response Playbook course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Production Debugging & Incident Response Playbook course, upgrade to CoddyKit PRO.

What will I learn in “Tools and Platforms for Chaos Experiments”?

Explore various tools (e.g., Chaos Monkey, LitmusChaos) that facilitate the controlled injection of failures into systems. You practise Production Debugging & Incident Response Playbook with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.

Do I need any experience to start Production Debugging & Incident Response Playbook?

No prior experience is required. Production Debugging & Incident Response Playbook on CoddyKit is structured for beginners through advanced learners; this is — lesson 2 of 4, so you can start here or from the beginning and move at your own pace.

How long does the “Tools and Platforms for Chaos Experiments” lesson take?

Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.

Can I write and run code in this Production Debugging & Incident Response Playbook lesson?

Yes. Every Production Debugging & Incident Response Playbook lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.

All lessons in this course

  1. Principles of Chaos Engineering
  2. Tools and Platforms for Chaos Experiments
  3. Building Resilience into System Design
  4. Measuring Blast Radius and Steady-State Hypotheses
← Back to Production Debugging & Incident Response Playbook