serverless-plugin-log-subscription
serverless-plugin-log-subscription copied to clipboard
Using [serverless-plugin-log-subscription](https://github.com/dougmoscrop/serverless-plugin-log-subscription) version 2.2 Official documentation says: Custom function settings: ``` custom: logSubscription: destinationArn: 'some-arn' functions: myFunction: logSubscription: filterPattern: 'WARN*' ``` But adding ``` logSubscription: filterPattern: 'WARN*' ``` to function...
The parsing of logs between lambda and api gateway can be different. Would it be possible to set the destination arn for api gateway logs to to have a different...
When deploying the following config I noticed that for api gateway execution logs the stage, even though being set via cli options is not being set correctly and it is...
This is a great plugin, however something I've noticed while trying to set it up, when using this plugin with Lambda@Edge functions, the only subscriptions that are created are connected...
Enabling Access logs and/or Execution logs (e.g. using the `apiGatewayLogs: true` setting) fails the deployment completely if destination isn't a Lambda function. The following error occurs if using firehose as...
Getting this error when addLambdaPermission is disabled and apiGatewayLogs is enabled. "The CloudFormation template is invalid: Template format error: Unresolved resource dependencies [ApiGatewayLogGroupLambdaPermission] in the Resources block of the template"
We want to send API Gateway logs to a Kinesis Firehose destination. The current behaviour of the plugin is to accept only lambda functions as a destination. Current behaviour: ```yaml...
Using the Api Gateway logsubscription support with only execution logging enabled fails with the error "Unresolved resource dependencies [ApiGatewayLogGroup] in the Resources block of the template" because serverless creates this...
Version 2.1.0 added api gateway support but does not take into account that custom.logSubscription can be an array. This causes breakage with no option to disable the api gateway subscriptions...
Our AWS account supports up to two log subscriptions (I think this is now default?) and I can manually attach up to two to a cloudwatch log group. We currently...