Skip to content

Commit

Permalink
more new widget to proper dashboard (#1652)
Browse files Browse the repository at this point in the history
  • Loading branch information
sastels authored Nov 12, 2024
1 parent 9d985f1 commit 9d06d2d
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions aws/eks/dashboards.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
]
}
Expand Down Expand Up @@ -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"
}
}
]
}
Expand Down

0 comments on commit 9d06d2d

Please sign in to comment.