AWS Bedrock Agents
Bridge AWS Bedrock Agent invocations into Iqrar via EventBridge and a Lambda that POSTs to /telemetry.
You don't run Bedrock Agents yourself, so there's no SDK-level seam. The integration shape is a one-time event-bridge: every Bedrock invocation publishes to CloudWatch Logs and EventBridge, and a small Lambda forwards the structured event to POST /telemetry on your Iqrar Worker.
Architecture
Bedrock Agent ─▶ CloudWatch Logs ─▶ EventBridge rule ─▶ Lambda ─▶ Iqrar /telemetry
What the Lambda does
- On agent invocation start, POST
/register(idempotent) with the Bedrock Agent ID asagent_id. - On each step / tool call event, POST
/telemetrywith anagent.steporagent.tool.start/.endevent. - On agent completion, POST
agent.invocation.endwith usage and trace ID.
A reference Lambda is on the roadmap. Until then the
See also
· ·