EC2 process kill
Kill one or more processes by PID inside a target EC2 instance via AWS Systems Manager, so you can test how the workload recovers when a critical process disappears without losing the host.
EC2 process kill is an AWS chaos fault that kills one or more processes identified by PID inside a target EC2 instance for a configurable duration. The host stays running; only the named processes are terminated. The fault dispatches the kill via AWS Systems Manager Run Command, so the target instance must have the SSM Agent installed and an IAM role that permits SSM messages.
Use this fault to test how the workload reacts when a critical process disappears: does a supervisor (systemd, container runtime, custom watchdog) restart it cleanly, does the application surface the failure to its callers, and how long until traffic recovers?
Use cases
Run this fault when you want to answer concrete questions like:
Supervisor recovery: When a managed process (systemd unit, container, custom worker) is killed, does the supervisor restart it within the expected window?
Crash semantics vs graceful shutdown: When you kill a process with
SIGKILL(FORCE=true) instead ofSIGTERM(FORCE=false), does the application recover identically, or does state corruption surface?Liveness probe correctness: For containerized workloads, do liveness probes detect the failure and trigger a restart at the correct cadence?
Caller-side resilience: When the process is unavailable, do upstream callers retry, fall back, or fail gracefully?
Observability coverage: Does the kill surface in logs, traces, and alerts with enough context to drive a runbook?
Prerequisites
Kubernetes version: 1.21 or later for the chaos infrastructure cluster.
Target instance is reachable via SSM: The instance has the SSM Agent running and an instance profile with the
AmazonSSMManagedInstanceCorepolicy (or equivalent). Confirm withaws ssm describe-instance-information --filters "Key=InstanceIds,Values=<id>".Selector provided: Either
EC2_INSTANCE_IDorEC2_INSTANCE_TAGis set.Processes identified:
PROCESS_IDSlists the PIDs to kill on the target instance.AWS credentials available: Either an AWS credentials file uploaded as a File Secret in Harness Secret Manager (see Authentication below) or IRSA on the chaos infrastructure service account.
IAM permissions granted: The credentials or role include the SSM and EC2 permissions listed below.
Supported environments
Amazon EC2 (Linux instances with SSM Agent)
Supported
Amazon EC2 (Windows instances with SSM Agent)
Supported
Amazon EKS managed worker nodes
Supported (if SSM Agent is installed)
Amazon EKS self-managed worker nodes
Supported (if SSM Agent is installed)
AWS regions
Supported in every commercial region
Targeting by tag
Supported via EC2_INSTANCE_TAG
Targeting by ID
Supported via EC2_INSTANCE_ID
Permissions required
ec2:DescribeInstances/ec2:DescribeInstanceStatusresolve the target instance and confirm reachability.ssm:SendCommandandssm:GetCommandInvocationsend the kill command and read its result.ssm:CancelCommandis used to roll back if the experiment is aborted mid-flight.ssm:DescribeInstanceInformationconfirms the SSM Agent is online before the fault starts.
Go to common policy for all AWS faults to use a single superset IAM policy across every AWS fault.
Authentication
The fault supports three credential delivery models. Pick one based on how your chaos infrastructure is deployed.
Harness Secret Manager file secret
Chaos infrastructure runs outside EKS, or you want explicit static credentials
Upload the AWS credentials file as a File Secret in Harness Secret Manager and reference its identifier via AWS_AUTHENTICATION_SECRET
IAM Roles for Service Accounts (IRSA)
Chaos infrastructure runs in EKS and uses an OIDC-bound service account
No tunable changes; the chaos pod inherits the role automatically. Go to AWS IAM integration to set it up
Assume role
The fault needs to act in a different account or with elevated permissions
Set ASSUME_ROLE_ARN to the role ARN; the chaos pod assumes the role on top of its base credentials
When using the Harness Secret Manager method, the File Secret should contain an AWS credentials file in the standard ~/.aws/credentials format:
Upload this file as a File Secret in Harness Secret Manager (Project Setup → Secrets → New File Secret), and pass the secret identifier in AWS_AUTHENTICATION_SECRET.
Fault tunables
Required parameters
REGION
AWS region that hosts the target instance.
(required)
PROCESS_IDS
Comma-separated list of PIDs to kill on the target instance (for example 1234,1235).
(required)
EC2_INSTANCE_ID or EC2_INSTANCE_TAG
One of these must be set to select the target instance(s).
""
Chaos parameters
TOTAL_CHAOS_DURATION
Duration of the fault in seconds.
30
INSTANCE_AFFECTED_PERC
Percentage of matching instances to target (applies only when using EC2_INSTANCE_TAG). 0 targets one instance.
0
FORCE
When true, kills with SIGKILL (force kill); when false, sends SIGTERM for graceful shutdown.
false
INSTALL_DEPENDENCIES
Install dependencies inside the target instance if missing. Set to False to skip.
True
PROXY
HTTP/HTTPS proxy used by the in-instance installer (for example https_proxy=http://proxy.server:3128). Leave empty when no proxy is needed.
""
SEQUENCE
Order in which multiple instances are processed: parallel or serial.
parallel
RAMP_TIME
Wait period in seconds before and after the fault. Go to ramp time to read how it is applied.
0
Authentication
ASSUME_ROLE_ARN
ARN of an IAM role to assume on top of the base credentials.
""
AWS_AUTHENTICATION_SECRET
Identifier of the File Secret in Harness Secret Manager that contains the AWS credentials file. Not required when using IRSA.
""
Tunables that apply to every fault are documented in common tunables for all faults.
Fault execution in brief
Sends an SSM Run Command to the selected instance(s) in REGION that kills the PIDs listed in PROCESS_IDS (using SIGKILL when FORCE=true, otherwise SIGTERM), held for TOTAL_CHAOS_DURATION seconds before the experiment exits.
Expected behavior during fault execution
The named processes terminate on the target instance(s).
If a supervisor (systemd, container runtime, custom watchdog) is responsible for the process, a replacement starts and the application recovers; if not, the process stays gone until the host is rebooted or the application is redeployed.
Callers of the process may see connection resets, 5xx responses, or timeouts depending on what the process serves.
Logs on the target instance typically show the kill signal received by the process.
Signals to watch
Attach resilience probes to assert each layer:
Process state on the target: Use a command probe running
aws ssm send-command --document-name AWS-RunShellScript --parameters 'commands=["pgrep <process>"]'to confirm the kill.Application availability: Use an HTTP probe against an endpoint served by the killed process to detect downtime and measure restart time.
Supervisor restart events: Use a Prometheus probe on
node_systemd_unit_state{state="active"}(or the equivalent for your supervisor) to confirm the restart.
Verify the fault execution effect
While the experiment is running, confirm the processes are gone:
Run a process query via SSM.
Check supervisor logs.
For systemd:
You should see a stop event followed by a restart.
Recovery and cleanup
End of duration: The chaos pod stops issuing kill commands.
Abort the experiment: Stopping the experiment from Chaos Studio cancels any in-flight SSM command.
Manual recovery: If the killed process has no supervisor, restart it manually (
systemctl restart <service>via SSM,kubectl rollout restartfor a Kubernetes workload, or your platform's equivalent).
Limitations
PID stability: PIDs change across reboots and supervisor restarts. Capture the PID immediately before the experiment or target a long-lived process whose PID file is stable.
SSM Agent required: Instances without the SSM Agent running cannot be targeted. Bake the agent into your AMI or install it via cloud-init.
Single command per instance: Multiple PIDs are passed to a single kill command; if the command fails midway, some processes may have already exited and others may not.
No payload control: This fault only kills processes. It does not modify their behavior or arguments. Use
ec2-cpu-hogorec2-memory-hogfor resource-level chaos.
Troubleshooting
Related faults
EC2 stop by ID: Stop the whole host instead of killing a single process.
EC2 CPU hog: Stress CPU inside the instance via SSM instead of killing a process.
SSM chaos by ID: Run any SSM document for arbitrary in-instance chaos.
Common AWS fault tunables: Shared environment variables for AWS faults.
Last updated
Was this helpful?