aws-samples / serverless-snippets

Snippets of code used for Serverless Development. Code examples hosted on serverlessland.com/snippets
https://serverlessland.com/snippets
MIT No Attribution
140 stars 93 forks source link

Test Snippet #124

Closed boyney123 closed 9 months ago

boyney123 commented 9 months ago

Snippet ID

cloudwatch-insight-apigw-integration-latency2

Title of the Snippet

Integration latency report

Subtitle

Create API Gateway integration latency report for your API Gateway access log group.

Description

Cloudwatch Log Insight snippet that returns API Gateway integration latency statistics in 1 minute intervals in your API Gateway access log group.

Type

CloudWatch Logs Insights

Which services are related to this snippet?

What programming languages can be applied to this snippet?

Snippet title

Copy the code into CloudWatch Logs Insights

Snippet

filter status=200
| stats avg(integrationLatency), max(integrationLatency), 
min(integrationLatency) by bin(1m)