Asg Activity
Every Auto Scaling group with capacity, scaling rules and a 24-hour activity timeline.
What this pane shows
Per-ASG view: current capacity vs desired vs min/max, a 24-hour sparkline of in-service instance count, the scaling policies attached (target tracking, step scaling, scheduled), and a timeline of recent scaling activity (launches, terminations, rollback events) with the cause AWS reports for each.
Key use cases
- Investigate why an ASG scaled up or down overnight.
- Confirm scaling rules are firing as expected during traffic peaks.
- Catch an ASG that's pinned at max with no headroom for spikes.
- Audit scaling policies across the fleet before a load-test event.
How to embed
Drop this snippet on any HTML page that loads lp-embed.js. The pane
mounts itself wherever the matching <div> is in the DOM.
<div class="lp-asg-activity-panel"
data-lp-account="<your-account-alias>"></div>
<script src="https://lightpane.io/embed/lp-embed.js"
data-lp-key="<your-access-key>"></script>
<script src="https://lightpane.io/_pane-tests/aws/asg-activity/asg-activity.js"
defer></script>
Tier
Available on Explorer and above.
Build notes
Stage 2 wiring (2026-04-28): ASG inventory live via lp-fetch.js (service autoscaling_groups); per-ASG capacity sparkline via lpFetch.metrics() over CloudWatch GetMetricData (AWS/AutoScaling.GroupInServiceInstances)
Mock-only at the moment — live-wiring tracked in the roadmap.