Ecs Services
Every ECS service across every cluster, with deploy state, task counts and recent events.
What this pane shows
ECS services rolled up by cluster, each with its deployment state (stable, deploying, failing, rolled back), the desired-vs-running task count, the time of the last deployment and a small stream of recent service events. Services in trouble (zero running tasks, repeated rollbacks) are highlighted.
Key use cases
- Find the service whose deployment stalled overnight.
- Catch an ECS service that's desired-3 but running-0 (image-pull failure, ENI exhaustion, etc.).
- Confirm a fleet-wide deploy completed cleanly across every cluster.
- Audit which services have stale code (no deploy in N weeks).
How to embed
lp.js is the single-entry loader: it injects the shared LightPane runtime
(and sd-embed.css) once per page. Add this pane's own stylesheet and script;
the pane mounts itself wherever the matching <div> is in the DOM.
<!-- In <head> — this pane's stylesheet -->
<link rel="stylesheet" href="https://lightpane.io/_pane-tests/aws/ecs-services/ecs-services.css">
<!-- Your access key (inline, or set window.lpEmbed.accessKey from your own JS) -->
<script>window.lpEmbed = { accessKey: "<your-access-key>" };</script>
<!-- Where the pane should appear -->
<div class="lp-ecs-services-panel" data-lp-account="<your-account-alias>"></div>
<!-- Before </body> — shared loader + this pane's script -->
<script src="https://lightpane.io/embed/lp.js"></script>
<script src="https://lightpane.io/_pane-tests/aws/ecs-services/ecs-services.js" defer></script>
Tier
Available on Explorer and above.
Build notes
Stage 2 wiring (2026-04-28): cluster inventory live via lp-fetch.js (service ecs_clusters)
Mock-only at the moment — live-wiring tracked in the roadmap.