Skip to content

Commit

Permalink
add service callbacks failures to overview dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
sastels committed Nov 7, 2024
1 parent f344f2c commit 86f504e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions aws/eks/dashboards.tf
Original file line number Diff line number Diff line change
Expand Up @@ -1741,6 +1741,20 @@ resource "aws_cloudwatch_dashboard" "slos" {
"end": "P0D",
"title": "Time to process email delivery receipts, per 15 minutes"
}
},
{
"height": 4,
"width": 8,
"y": 17,
"x": 0,
"type": "log",
"properties": {
"query": "SOURCE '/aws/containerinsights/${aws_eks_cluster.notification-canada-ca-eks-cluster.name}/application' | fields @timestamp, log, kubernetes.container_name as app, kubernetes.pod_name as pod_name, @logStream\n| filter kubernetes.container_name like /^celery/\n| filter @message like /send_delivery_status_to_service request failed for notification_id/\n| parse log \"to url: https://* service: * exc: * \" as endpoint, service_id, error\n| stats count() as fails by service_id, endpoint, error\n| display fails, service_id, error, endpoint\n| order by fails desc\n",
"region": "${var.region}",
"stacked": false,
"title": "Failed Service Callbacks",
"view": "table"
}
}
]
}
Expand Down

0 comments on commit 86f504e

Please sign in to comment.