Skip to content

Commit b179875

Browse files
committed
Merge remote-tracking branch 'upstream/main' into fix-dashboards
2 parents 72cb13c + fbb9dcc commit b179875

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Welcome to the AWS Observability Accelerator for CDK!
55
The AWS Observability Accelerator for CDK is a set of opinionated modules
66
to help you set up observability for your AWS environments with AWS Native services and AWS-managed observability services such as Amazon Managed Service for Prometheus,Amazon Managed Grafana, AWS Distro for OpenTelemetry (ADOT) and Amazon CloudWatch.
77

8-
We provide curated metrics, logs, traces collection, alerting rules and Grafana dashboards for your EKS infrastructure, Java/JMX, NGINX based workloads and your custom applications.
8+
We provide curated metrics, logs, traces collection, cloudwatch dashboard, alerting rules and Grafana dashboards for your EKS infrastructure, Java/JMX, NGINX based workloads and your custom applications.
99

1010
## Single EKS Cluster AWS Native Observability Accelerator
1111

cdk.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"cluster.dashboard.url": "https://raw.githubusercontent.com/aws-observability/aws-observability-accelerator/main/artifacts/grafana-dashboards/eks/infrastructure/cluster.json",
5151
"kubelet.dashboard.url": "https://raw.githubusercontent.com/aws-observability/aws-observability-accelerator/main/artifacts/grafana-dashboards/eks/infrastructure/kubelet.json",
5252
"namespaceworkloads.dashboard.url": "https://raw.githubusercontent.com/aws-observability/aws-observability-accelerator/main/artifacts/grafana-dashboards/eks/infrastructure/namespace-workloads.json",
53-
"nodexporter.dashboard.url": "https://raw.githubusercontent.com/aws-observability/aws-observability-accelerator/main/artifacts/grafana-dashboards/eks/infrastructure/nodeexporter-nodes.json",
53+
"nodeexporter.dashboard.url": "https://raw.githubusercontent.com/aws-observability/aws-observability-accelerator/main/artifacts/grafana-dashboards/eks/infrastructure/nodeexporter-nodes.json",
5454
"nodes.dashboard.url": "https://raw.githubusercontent.com/aws-observability/aws-observability-accelerator/main/artifacts/grafana-dashboards/eks/infrastructure/nodes.json",
5555
"workloads.dashboard.url": "https://raw.githubusercontent.com/aws-observability/aws-observability-accelerator/main/artifacts/grafana-dashboards/eks/infrastructure/workloads.json"
5656
}

docs/patterns/single-new-eks-observability-accelerators/single-new-eks-opensource-observability.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,13 @@ export AMG_API_KEY=$(aws grafana create-workspace-api-key \
7575
5. AWS Secrets Manager for GRAFANA API KEY: Update the Grafana API key secret in AWS Secrets using the above new Grafana API key. This will be referenced by Grafana Operator deployment of our solution to access Amazon Managed Grafana from Amazon EKS Cluster
7676

7777
```bash
78-
export API_KEY_SECRET_NAME="grafana-api-key"
79-
aws secretsmanager update-secret \
80-
--secret-id $API_KEY_SECRET_NAME \
78+
aws secretsmanager create-secret \
79+
--name grafana-api-key \
80+
--description "API Key of your Grafana Instance" \
8181
--secret-string "${AMG_API_KEY}" \
82-
--region $AWS_REGION
82+
--region $AWS_REGION \
83+
--query ARN \
84+
--output text
8385
```
8486

8587
6. Install project dependencies by running `npm install` in the main folder of this cloned repository.

lib/single-new-eks-opensource-observability-construct/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default class SingleNewEksOpenSourceobservabilityConstruct {
2525
const clusterDashUrl: string = utils.valueFromContext(scope, "cluster.dashboard.url", undefined);
2626
const kubeletDashUrl: string = utils.valueFromContext(scope, "kubelet.dashboard.url", undefined);
2727
const namespaceWorkloadsDashUrl: string = utils.valueFromContext(scope, "namespaceworkloads.dashboard.url", undefined);
28-
const nodeExporterDashUrl: string = utils.valueFromContext(scope, "nodexporter.dashboard.url", undefined);
28+
const nodeExporterDashUrl: string = utils.valueFromContext(scope, "nodeexporter.dashboard.url", undefined);
2929
const nodesDashUrl: string = utils.valueFromContext(scope, "nodes.dashboard.url", undefined);
3030
const workloadsDashUrl: string = utils.valueFromContext(scope, "workloads.dashboard.url", undefined);
3131

0 commit comments

Comments
 (0)