gpt4 book ai didi

amazon-web-services - 如何使用过滤策略从 SNS 主题中排除 cloudwatch 警报?

转载 作者:行者123 更新时间:2023-12-05 04:56:32 28 4
gpt4 key购买 nike

我有一个 SNS 主题,它有两个订阅,一个是 pagerduty API,另一个是 pagerdutyEmail。我想使用该主题的订阅过滤策略从 pagerduty 电子邮件订阅中排除警报。

我不确定我应该如何排除它,过滤策略是否有类似的选项

我尝试在下面使用但不起作用。

  "AlarmArn": [
{
"prefix": "arn:aws:cloudwatch"
}
]
}

最佳答案

我认为订阅过滤策略不允许您根据警报 ARN 或 Cloudwatch JSON 负载中发送的任何其他元数据过滤 Cloudwatch 警报。

过滤策略需要发送到 SNS 主题的负载中的 MessageAttributes 字段,并且该字段应包含您希望添加过滤策略以过滤通知所基于的属性。

Cloudwatch 警报发送的 JSON 负载不包含以下示例负载中所示的那些属性:

{
"Type": "Notification",
"MessageId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"TopicArn": "arn:aws:sns:eu-west-1:000000000000:cloudwatch-alarms",
"Subject": "ALARM: \"Example alarm name\" in EU - Ireland",
"Message": "{\"AlarmName\":\"Example alarm name\",\"AlarmDescription\":\"Example alarm description.\",\"AWSAccountId\":\"000000000000\",\"NewStateValue\":\"ALARM\",\"NewStateReason\":\"Threshold Crossed: 1 datapoint (10.0) was greater than or equal to the threshold (1.0).\",\"StateChangeTime\":\"2017-01-12T16:30:42.236+0000\",\"Region\":\"EU - Ireland\",\"OldStateValue\":\"OK\",\"Trigger\":{\"MetricName\":\"DeliveryErrors\",\"Namespace\":\"ExampleNamespace\",\"Statistic\":\"SUM\",\"Unit\":null,\"Dimensions\":[],\"Period\":300,\"EvaluationPeriods\":1,\"ComparisonOperator\":\"GreaterThanOrEqualToThreshold\",\"Threshold\":1.0}}",
"Timestamp": "2017-01-12T16:30:42.318Z",
"SignatureVersion": "1",
"Signature": "Cg==",
"SigningCertUrl": "https://sns.eu-west-1.amazonaws.com/SimpleNotificationService-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.pem",
"UnsubscribeUrl": "https://sns.eu-west-1.amazonaws.com/?Action=Unsubscribe&SubscriptionArn=arn:aws:sns:eu-west-1:000000000000:cloudwatch-alarms:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}

我已经使用 Cloudwatch 负载中可用的键值对之一测试了过滤策略,但它对我不起作用。

引用文档:
https://docs.aws.amazon.com/sns/latest/dg/sns-subscription-filter-policies.html

您可能必须使用首选客户端库编写 Lambda 函数,并使用 Pagerduty Events API 来制定解决方案。

引用:
https://developer.pagerduty.com/docs/tools-libraries/client-libraries/ https://developer.pagerduty.com/docs/events-api-v2/trigger-events/

关于amazon-web-services - 如何使用过滤策略从 SNS 主题中排除 cloudwatch 警报?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64897992/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com