Menu
Choose a product
Scroll for more
Documentation
Grafana Cloud
Monitor infrastructure
Kubernetes Monitoring
Configure Kubernetes Monitoring
Configure with other methods
AWS EKS Cluster
Grafana Cloud
Configure AWS EKS for Kubernetes Monitoring
This guide explains how to configure AWS Elastic Kubernetes Service (EKS) for use with Grafana Cloud’s Kubernetes Monitoring. It covers prerequisites, IAM setup, cluster configuration, and integration steps.
Prerequisites
- An AWS account with permissions to create and manage EKS clusters
- AWS CLI installed and configured
kubectlandeksctlinstalled- A Grafana Cloud account
Create an EKS Cluster
Follow the AWS EKS Getting Started Guide to create your EKS cluster. Ensure your worker nodes have the necessary IAM permissions for monitoring.
Configure IAM Roles for Service Accounts (IRSA)
To securely grant Kubernetes workloads access to AWS services, use IAM Roles for Service Accounts (IRSA).
- Create an IAM OIDC provider for your cluster:sh
eksctl utils associate-iam-oidc-provider --region <region> --cluster <cluster-name> --approve - Create an IAM policy for monitoring (for example CloudWatch).
- Create a Kubernetes service account and associate it with the IAM role:sh
eksctl create iamserviceaccount \ --name <service-account-name> \ --namespace <namespace> \ --cluster <cluster-name> \ --attach-policy-arn arn:aws:iam::<account-id>:policy/<policy-name> \ --approve
Install Monitoring components
You can use Helm to install Grafana Alloy or the Kubernetes Monitoring Helm chart:
sh
helm repo add grafana https://grafana.github.io/helm-charts
helm repo update
helm install grafana-k8s-monitoring grafana/k8s-monitoring -n <namespace> --create-namespaceConfigure the Helm chart with your Grafana Cloud credentials and any AWS-specific settings.
Validate data flow
- Check that metrics and logs are being sent to Grafana Cloud.
- Use the Grafana Cloud UI to verify your EKS cluster appears and is reporting data.
Troubleshoot
- Ensure IAM roles and policies are correctly configured.
- Check pod logs for errors related to permissions or connectivity.
- Refer to Grafana Cloud Kubernetes Monitoring documentation for more details.
More information
For more information, see:
Was this page helpful?
Related resources from Grafana Labs
Additional helpful documentation, links, and articles:
Video

Getting started with managing your metrics, logs, and traces using Grafana
In this webinar, we’ll demo how to get started using the LGTM Stack: Loki for logs, Grafana for visualization, Tempo for traces, and Mimir for metrics.
Video

Intro to Kubernetes monitoring in Grafana Cloud
In this webinar you’ll learn how Grafana offers developers and SREs a simple and quick-to-value solution for monitoring their Kubernetes infrastructure.
Video

Building advanced Grafana dashboards
In this webinar, we’ll demo how to build and format Grafana dashboards.