AWS
Xray Map
AWS X-Ray service map of how requests flow between services, with per-edge latency and errors.
Live preview — demo data
What this pane shows
A node-link diagram of the account's tracing graph: each node is an X-Ray-known service (Lambda function, API Gateway stage, DynamoDB table, RDS, downstream HTTP service), each edge is a request flow. Latency and error rates on each edge are shown so a slow or failing hop is obvious.
Key use cases
- Find the slow hop in a multi-service request path.
- Confirm a new microservice is correctly registered and traced.
- Visualise dependency fan-out for a capacity-planning exercise.
- Spot an unintended dependency (one service shouldn't be calling another).
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/xray-map/xray-map.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-xray-map-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/xray-map/xray-map.js" defer></script>
Tier
Available on Builder and above.
Build notes
Mock-only at the moment — live-wiring tracked in the roadmap.