rameshv29 05ada44c3f
Updated the folder structure and added AgentCore Observability (#139)
* updated the cognito setup, gateway creation using agentcore sdk

* added the config directory with test file

* updated the automation scripts and simplified the approach to install and test it

* updated the tool description in the target creation and updated readme file

* added agentcore observability for agentcore gateway

* updated architecture diagram

* Update observability section in README.md with more concise information

* removed old folder directory

* updated the tool description in the targets
2025-07-24 18:15:45 -07:00

17 lines
612 B
Bash
Executable File

#!/bin/bash
set -e
echo "=== Setting up AgentCore Gateway Observability ==="
# Make script executable
chmod +x scripts/enable_observability.sh
# Enable CloudWatch Transaction Search and configure log groups
echo "Enabling CloudWatch Transaction Search and configuring log groups..."
./scripts/enable_observability.sh
echo "=== AgentCore Gateway Observability Setup Complete ==="
echo "To view observability data, open the CloudWatch console and navigate to:"
echo " - Application Signals > Transaction search"
echo " - Log groups > /aws/vendedlogs/bedrock-agentcore/<resource-id>"
echo " - X-Ray > Traces"