1 Respuesta
- Más nuevo
- Más votos
- Más comentarios
0
Enable Execution logs on API Gateway, set it to Errors and add a subscription to the CloudWatch logs group that will notify you.
You can also create an alarm on the 4xx or 5xx metric.
Contenido relevante
- preguntada hace 5 meses
- preguntada hace 2 meses
- OFICIAL DE AWSActualizada hace 2 años

Hello, thanks for your answers, the execution logs are indeed enabled and i can read the log on cloudwatch, i also created alarm that inform me when an error is returned but it does give any information that could be use to retrieve the corresponding logs, excepting the time range.
I guess the cloudwatch subscription to every log could do the tricks if setted to error but It is legal requirement for me to keep all the logs. also it does not return any information about the lambda triggered. in my case i did not find a way to create a filter properly
If you need to save all logs, you can send all logs to CWL, create a subscription filer to Lambda. The filter pattern should include the error you are looking for, e.g, "Error 500" (not sure how it actually looks in the log). When the function is invoked it gets in the event the log group and log stream so you can use that to get all the messages from that specific stream. Each log stream correlates with a single API call.