feat(dashboards): add the CloudWatch GrafanaDatasource CR the persona boards query#58
Merged
Merged
Conversation
… boards query Eight panels across the agent ops / kill-switch / agentgateway / finance dashboards set "datasource": "cloudwatch" to graph CloudWatch-native AWS metrics — AWS/SQS queue depth, AWS/States Step Functions execution health, AWS/Events rule failures, AWS/Bedrock throttling — none of which have a Prometheus equivalent. No GrafanaDatasource CR of that type existed, so every one rendered "datasource not found". The capability was already in place: the landing-zone AMG workspace enables the CloudWatch plugin (data_sources includes CLOUDWATCH) and its service role carries CloudWatch read IAM. Only the datasource instance was missing. This adds it: type cloudwatch, uid cloudwatch, access proxy, authType ec2_iam_role (the workspace's ambient role, no static keys), defaultRegion us-west-2 — constant across environments, so no per-env overlay patch. The finance board's four athena-cur panels are a separate, larger cross-repo fix (AMG Athena plugin + service-role IAM + per-env workgroup wiring) tracked separately.
CI Results
All validations passed. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Eight panels across the agent ops / kill-switch / agentgateway / finance dashboards set
"datasource": "cloudwatch"to graph CloudWatch-native AWS metrics (AWS/SQS depth, AWS/States execution health, AWS/Events failures, AWS/Bedrock throttling) — none with a Prometheus equivalent. No GrafanaDatasource CR of that type existed, so they all rendered "datasource not found".The capability was already there — the landing-zone AMG workspace enables the CloudWatch plugin and its service role has CloudWatch read IAM; only the datasource instance was missing. This adds it (type cloudwatch, uid cloudwatch,
ec2_iam_roleauth, region us-west-2 — constant across envs, no per-env patch).The finance board's 4
athena-curpanels are a separate cross-repo fix (AMG Athena plugin + service-role IAM + per-env workgroup wiring), tracked as its own issue.yamllint clean; cloudwatch DS renders into all four overlay builds.