DEV Community

Michael Levan
Michael Levan

Posted on

Monitoring AWS EKS with Grafana and Prometheus

In last weeks blog, Monitoring AKS With Prometheus and Grafana, you learned how to monitor Azure Kubernetes Service (AKS) with Prometheus and Grafana, along with the theory around why you’d want to implement monitoring and observability.

In this blog post, you’ll learn how to implement Grafana and Prometheus again, but this time in Elastic Kubernetes Service (EKS)

Setting Up A Cluster

There are several options for setting up an EKS cluster, but the two primary options are typically:

  • Via an Infrastructure-as-Code tool like Terraform
  • Via the UI (manual, not repeatable, and not recommended).

If you want to use Terraform, you can check out the open-source code that I wrote to get your EKS cluster up and running here: https://github.com/AdminTurnedDevOps/Kubernetes-Quickstart-Environments/tree/main/aws/eks

If you choose to go with the UI/portal method, log into AWS and search for the EKS service.

Image description

Image description

Metrics Confirmation

Just like any other Kubernetes cluster, the /metrics endpoint needs to be available.

Unlike AKS, EKS doesn’t expose the Metrics server (Pod) by default. Instead, you have to configure it.

First, connect to the EKS cluster:

aws eks --region region update-kubeconfig --name cluster_name
Enter fullscreen mode Exit fullscreen mode

Next, run the configuration to deploy the Metrics server

kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
Enter fullscreen mode Exit fullscreen mode

Image description

Check to see if the Metrics Pod is up and running.

kubectl get pods -n kube-system
Enter fullscreen mode Exit fullscreen mode

If the /metrics endpoint is available, you’ll see an output similar to the text below with Metrics Pods running.

NAMESPACE     NAME                              READY   STATUS    RESTARTS   AGE
kube-system   aws-node-dzklw                    1/1     Running   0          5m18s
kube-system   coredns-d5b9bfc4-p4ndr            1/1     Running   0          8m57s
kube-system   coredns-d5b9bfc4-rtpgx            1/1     Running   0          8m57s
kube-system   kube-proxy-v67z5                  1/1     Running   0          5m18s
kube-system   metrics-server-847dcc659d-9d2l5   1/1     Running   0          32s
Enter fullscreen mode Exit fullscreen mode

Setting Up Grafana and Prometheus

Once the Metrics server (Pod) is available, you can deploy Prometheus.

For the purposes of this blog post, you can use the prometheus-community Helm chart. There are several ways to deploy Prometheus and Grafana, and this is one of the most popular ways.

First, add the Helm repo.

helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
Enter fullscreen mode Exit fullscreen mode

Next, deploy the Helm Chart with the specific storage requirements needed for any volumes that may run in your EKS cluster. In this case, for example, the --set flag is using gp2 for the storage class.

helm install prometheus \
  prometheus-community/kube-prometheus-stack \
  --namespace monitoring \
  --create-namespace \
  **--set alertmanager.persistentVolume.storageClass="gp2",server.persistentVolume.storageClass="gp2"**
Enter fullscreen mode Exit fullscreen mode

You’ll see an output similar to the screenshot below.

Image description

Confirmation

Once Prometheus and Grafana are deployed from the steps above, let’s confirm that everything is up and running as expected.

First, run the following command:

kubectl get all -n monitoring
Enter fullscreen mode Exit fullscreen mode

You should see an output similar to the screenshot below, which confirms all Prometheus and Grafana resources are actively running.

Image description

Next, confirm that you can reach Prometheus via Kubernetes port forwarding so you can see if the /metrics endpoint is getting consumed for Kubernetes Metrics.

kubectl port-forward svc/prometheus-kube-prometheus-prometheus -n monitoring 4001:9090
Enter fullscreen mode Exit fullscreen mode

Open up a web browser and go to the following: 127.0.0.1:4001.

Image description

Go to Status —> Targets.

Image description

If you scroll down a bit on the Targets page, you can confirm that the /metrics endpoint from Kubernetes is getting consumed.

Image description

Congrats! You have officially set up Prometheus and Grafana on EKS.

Top comments (3)

Collapse
 
leewynne profile image
Lee

Nice tutorial, highlights how simple managed Prometheus and Grafana is.. Is there also a co - pilot for EKS?

Collapse
 
thenjdevopsguy profile image
Michael Levan

Sorry, not sure what you mean by "copilot for EKS"

Collapse
 
leewynne profile image
Lee

My bad.. its for ECS