Backup failure alert in lifecycle manager

0

How we can set alert if any backup job get fails?

질문됨 2년 전608회 조회
2개 답변
1
수락된 답변

Consider looking at CloudWatch Metrics to gain insight into the operations aspect. CloudWatch metrics for Data Lifecycle Manager reports success and error metrics. These metrics might be enough for you to create alarms to be triggered when resources are not created, copied or deleted, allowing you to take immediate action to diagnose and fix potential issues.

Additionally, Data Lifecycle Manager generates a “DLM Policy State Change” event if a policy enters the error state. Refer to Monitor your policies using CloudWatch Events. You could look at triggering a notification based rule based on this type of event.

RoB
답변함 2년 전
0

I think it would be best to use EventBridge and SNS.

Sample Event Pattern

{
  "source": ["aws.backup"]
}

Sample Test Event

{
  "version": "0",
  "id": "12345678-5f35-d9a2-76d1-613683e4e024",
  "detail-type": "Backup Vault State Change",
  "source": "aws.backup",
  "account": "123456789012",
  "time": "2020-06-24T23:18:19Z",
  "region": "us-east-1",
  "resources": ["arn:aws:backup:us-west-2:123456789012:backup-vault:SampleVault"],
  "detail": {
    "backupVaultName": "SampleVault",
    "state": "CREATED"
  }
}
profile picture
Sri
답변함 2년 전
  • I think you have shared for AWS backup service suggestion instead of Data Life Cycle Manager.

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인