mirror of
https://github.com/awslabs/amazon-bedrock-agentcore-samples.git
synced 2025-09-08 20:50:46 +00:00
* 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
17 lines
612 B
Bash
Executable File
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" |