Install
openclaw skills install watadot-aws-cloudwatchObservability and monitoring by Watadot Studio. Log tailing and metric extraction.
openclaw skills install watadot-aws-cloudwatchObservability and automated monitoring patterns.
# Live tail of a Log Group
aws logs tail /aws/lambda/<function-name> --follow
# Query logs for errors (last 1h)
aws logs filter-log-events --log-group-name <name> --filter-pattern "ERROR" --start-time $(date -d '1 hour ago' +%s000) --query "events[].message"
# List active alarms with state
aws cloudwatch describe-alarms --query "MetricAlarms[?StateValue==\`ALARM\`].{Name:AlarmName,Reason:StateReason}" --output table
# Get CPU utilization metric for EC2
aws cloudwatch get-metric-statistics --namespace AWS/EC2 --metric-name CPUUtilization --dimensions Name=InstanceId,Value=<id> --period 3600 --statistics Average --start-time 2026-03-15T00:00:00 --end-time 2026-03-16T00:00:00
# List dashboard names
aws cloudwatch list-dashboards --query "DashboardEntries[].DashboardName"