From 9d06d2d420652c5be36d188b47bb6b40e1c42ca9 Mon Sep 17 00:00:00 2001 From: Steve Astels Date: Tue, 12 Nov 2024 15:03:25 -0500 Subject: [PATCH] more new widget to proper dashboard (#1652) --- aws/eks/dashboards.tf | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/aws/eks/dashboards.tf b/aws/eks/dashboards.tf index 6d6ffb458..23a08dcd5 100644 --- a/aws/eks/dashboards.tf +++ b/aws/eks/dashboards.tf @@ -542,6 +542,20 @@ resource "aws_cloudwatch_dashboard" "notify_system" { "title": "API lambda errors", "view": "timeSeries" } + }, + { + "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' | 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" + } } ] } @@ -1741,20 +1755,6 @@ 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' | 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" - } } ] }