Google 缺少偶发事件的云警报条件
Google Cloud alerting condition on missing infrequent event
我正在尝试创建一个警报条件,如果不经常发生的事件(例如,cron 作业 运行 每周一次)没有发生,它将触发。
指标是 log-based。我通过使用对齐周期在较小的 windows 上取得了成功,但存在对齐周期不能超过 1 天的限制。
Alignment periods longer than 86400 seconds are not supported.
(不工作)我正在尝试做的示例:
- conditionThreshold:
aggregations:
- alignmentPeriod: 604800s # 1 week NOT possible
perSeriesAligner: ALIGN_SUM
comparison: COMPARISON_LT
thresholdValue: 1.0
duration: 0s
filter: metric.type="logging.googleapis.com/user/my_infrequent_event_count"
trigger:
count: 1
displayName: Infrequent event did not occur
知道这怎么可能吗?
目前无法完成,因为持续时间不能超过 24 小时。
作为解决方法,您可能会发现有用的 Cloud Monitoring metric export for long-term metrics analysis. Please also refer to this doc.
我找到了 ,这也可能有帮助。
我正在尝试创建一个警报条件,如果不经常发生的事件(例如,cron 作业 运行 每周一次)没有发生,它将触发。
指标是 log-based。我通过使用对齐周期在较小的 windows 上取得了成功,但存在对齐周期不能超过 1 天的限制。
Alignment periods longer than 86400 seconds are not supported.
(不工作)我正在尝试做的示例:
- conditionThreshold:
aggregations:
- alignmentPeriod: 604800s # 1 week NOT possible
perSeriesAligner: ALIGN_SUM
comparison: COMPARISON_LT
thresholdValue: 1.0
duration: 0s
filter: metric.type="logging.googleapis.com/user/my_infrequent_event_count"
trigger:
count: 1
displayName: Infrequent event did not occur
知道这怎么可能吗?
目前无法完成,因为持续时间不能超过 24 小时。 作为解决方法,您可能会发现有用的 Cloud Monitoring metric export for long-term metrics analysis. Please also refer to this doc.
我找到了