logs

Fetch and display recent logs from AWS CloudWatch.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "logs" with this command: npx skills add forever-efficient/pitfal-solutions-website/forever-efficient-pitfal-solutions-website-logs

View CloudWatch Logs

Fetch and display recent logs from AWS CloudWatch.

Arguments

  • $ARGUMENTS
  • Optional: function name (contact, booking, proofing, orders)

Default: All Functions

Show recent logs from all Lambda functions:

for func in contact booking proofing orders; do echo "=== pitfal-${func} ===" aws logs tail /aws/lambda/pitfal-${func}
--since 1h
--profile pitfal
--format short 2>/dev/null || echo "No logs found" echo "" done

Specific Function

If $ARGUMENTS is provided (e.g., /logs contact ):

aws logs tail /aws/lambda/pitfal-$ARGUMENTS
--follow
--profile pitfal
--format short

Error Filtering

Show only errors from the last hour:

aws logs filter-log-events
--log-group-name /aws/lambda/pitfal-${ARGUMENTS:-contact}
--filter-pattern "ERROR"
--start-time $(( $(date +%s) - 3600 ))000
--profile pitfal

API Gateway Logs

aws logs tail /aws/api-gateway/pitfal-api
--since 1h
--profile pitfal
--format short

Output Format

Display logs with:

  • Timestamp

  • Log level (INFO/WARN/ERROR)

  • Message content

  • Request ID (if available)

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

gallery-manage

No summary provided by upstream source.

Repository SourceNeeds Review
General

optimize-images

No summary provided by upstream source.

Repository SourceNeeds Review
General

deploy

No summary provided by upstream source.

Repository SourceNeeds Review