Backup failure alert in lifecycle manager

0

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

preguntada hace 2 años608 visualizaciones
2 Respuestas
1
Respuesta aceptada

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
respondido hace 2 años
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
respondido hace 2 años
  • I think you have shared for AWS backup service suggestion instead of Data Life Cycle Manager.

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas