AWS
Lambda Radar
Every Lambda function with concurrency, error rate, throttles and a 24-hour invocation trend.
Live preview — demo data
What this pane shows
Per-function metrics over the last 24 hours: concurrent execution count, error rate, throttle count and last-invocation timestamp, alongside a sparkline of invocation volume. Functions that haven't been invoked in days are flagged separately — often a sign of orphaned code.
Key use cases
- Find the function whose error rate spiked overnight.
- Identify Lambda functions nobody is using — candidates for deletion.
- Spot a function approaching its reserved-concurrency limit.
- Confirm a deploy didn't change a function's invocation pattern unexpectedly.
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/lambda-radar/lambda-radar.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-lambda-radar-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/lambda-radar/lambda-radar.js" defer></script>
Tier
Available on Explorer and above.
Build notes
Mock-only at the moment — live-wiring tracked in the roadmap.