- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目标:设置一个以日志组名称作为参数的 Cloudformation 堆栈,每当该日志组中出现新日志时,它们就会被发送到 Lambda 函数进行处理,然后发送到 Kinesis Firehose,后者再发送将日志文件保存到名为 foobarbaz 的存储桶中。
问题:Lambda 函数永远不会被调用(Lambda 的 CloudWatch 日志显示,即使日志组中出现新数据,它也永远不会被触发)。由于我设置了 SubscriptionFilter 资源,调用应该自动发生。我没有看到任何错误。无论发生什么,似乎都在悄然失败。
注意:SubscriptionFilter 上的 FilterPattern 已设置为空字符串。我的目的是将日志组中的所有日志发送到 Lambda 函数。
这是我的 Cloudformation 模板:
Parameters:
LogGroupName:
Type: String
Description: The name of the log group who's logs we want to send to send to Lambda->Kinesis->S3
AuditTrailPrefix:
Type: String
Description: Log files will be sent to the Logging account S3 bucket with this prefix in the bucket path
Resources:
AuditTrailFunctionPermissions:
Type: AWS::Lambda::Permission
Properties:
Action: lambda:InvokeFunction
FunctionName: !Ref AuditTrailFunction
Principal: logs.amazonaws.com
SourceAccount: !Ref AWS::AccountId
AuditTrailFunction:
Type: AWS::Lambda::Function
Properties:
Handler: index.handler
Role: !GetAtt AuditTrailFunctionRole.Arn
Code:
ZipFile: >
// do some stuff with the data and PUT it to KinesisFirehose
// removed for brevity
Runtime: nodejs8.10
Timeout: 30
AuditTrailFunctionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Statement:
Action: sts:AssumeRole
Effect: Allow
Principal:
Service: lambda.amazonaws.com
Version: '2012-10-17'
ManagedPolicyArns:
- arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole
Policies:
- PolicyDocument:
Statement:
- Action:
- firehose:PutRecord
- firehose:PutRecordBatch
Effect: Allow
Resource: !Sub arn:aws:firehose:${AWS::Region}:${AWS::AccountId}:deliverystream/${AuditTrailDeliveryStream}
Version: '2012-10-17'
PolicyName: root
AuditTrailSubscription:
Type: AWS::Logs::SubscriptionFilter
DependsOn: AuditTrailFunctionPermissions
Properties:
DestinationArn: !GetAtt AuditTrailFunction.Arn
FilterPattern: ''
LogGroupName: !Ref LogGroupName
AuditTrailDeliveryStream:
Type: AWS::KinesisFirehose::DeliveryStream
Properties:
DeliveryStreamType: DirectPut
S3DestinationConfiguration:
BucketARN: arn:aws:s3:::foobarbaz
BufferingHints:
IntervalInSeconds: 60
SizeInMBs: 50
CompressionFormat: GZIP
Prefix: !Ref AuditTrailPrefix
RoleARN: !GetAtt DeliveryRole.Arn
DeliveryRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Statement:
Effect: Allow
Principal:
Service: firehose.amazonaws.com
Action: sts:AssumeRole
Policies:
- PolicyName: firehose_delivery_policy
PolicyDocument:
Statement:
Effect: Allow
Action:
- s3:AbortMultipartUpload
- s3:GetBucketLocation
- s3:GetObject
- s3:ListBucket
- s3:ListBucketMultipartUploads
- s3:PutObject
Resource:
- arn:aws:s3:::foobarbaz
- arn:aws:s3:::foobarbaz/${AuditTrailPrefix}*
最佳答案
我看不出有什么问题,但这里有一些故障排除提示:
只有当新日志上传到您的日志组时,才会调用 Lambda 函数。在您设置订阅过滤器之前,不会为日志组中已有的数据调用它。
如果第 1 条情况并非如此(即您有新数据正在上传),请转至 CloudWatch -> Metrics 并搜索日志组名称。您应该找到 4 个与订阅过滤器相关的指标:ForwardedBytes、ForwardedLogEvents、DeliveryErrors、DeliveryThrotdling。请参阅this用于描述。如果 DeliveryErrors 或 DeliveryThrotdling 指标 > 0,则存在问题。
DeliveryErrors 最可能的问题是权限问题。我没发现你的有什么问题,但我首先要仔细检查一下。
您可以使用 AWS CLI 手动调试订阅设置。 (请参阅this。)这可以帮助您找出可能是哪个设置部分导致了问题。
关于aws-lambda - 尽管有 SubscriptionFilter,AWS CloudWatch LogGroup 从未将日志发送到 Lambda,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54430840/
我正在尝试使用 Elasticsearch 订阅过滤器将流 cloudwatch 日志记录到 Elasticsearch 。 我想用 terraform 自动化,但没有找到 terraform 是否支
目标:设置一个以日志组名称作为参数的 Cloudformation 堆栈,每当该日志组中出现新日志时,它们就会被发送到 Lambda 函数进行处理,然后发送到 Kinesis Firehose,后者再
上下文 我创建了一个AWS Logs SubscriptionFilter使用CDK。我现在正在尝试为此资源的某些指标创建指标/警报。 问题 我感兴趣的所有指标(请参阅 Monitoring AWS
我的 CloudFormation 模板无法创建 AWS::Logs::SubscriptionFilter 资源: { "Resources": { "Bucket83908E77":
我是一名优秀的程序员,十分优秀!