Skip to content

Latest commit

 

History

History
75 lines (47 loc) · 5.11 KB

361_monitoring.md

File metadata and controls

75 lines (47 loc) · 5.11 KB

Lab 3.6.1: Monitoring

OpenShift monitoring can be categorized into three different categories which each try to answer their own question:

  1. Is our cluster in an operational state right now?
  2. Will our cluster remain in an operational state in the near future?
  3. Does our cluster have enough capacity to run all pods?

Is our cluster in an operational state at the moment?

In order to answer this first question, we check the state of different vital components:

  • Masters
  • etcd
  • Routers
  • Apps

Masters expose health information on an HTTP endpoint at https://openshift_master_cluster_public_hostname:openshift_master_api_port/healthz that can be checked for a 200 status code. On one hand, this endpoint can be used as a health indicator in a loadbalancer configuration, on the other hand we can use it ourselves for monitoring or troubleshooting purposes.

Check the masters' health state with a HTTP request:

$ curl -v https://console.user[X].lab.openshift.ch/healthz

As long as the response is a 200 status code at least one of the masters is still working and the API is accessible via Load Balancer (if there is one).

etcd also exposes a similar health endpoint at https://openshift_master_cluster_public_hostname:2379/health, though it is only accessible using the client certificate and corresponding key stored on the masters at /etc/origin/master/master.etcd-client.crt and /etc/origin/master/master.etcd-client.key.

# curl --cacert /etc/origin/master/master.etcd-ca.crt --cert /etc/origin/master/master.etcd-client.crt --key /etc/origin/master/master.etcd-client.key https://master0.user[X].lab.openshift.ch:2379/health

The HAProxy router pods are responsible for getting application traffic into OpenShift. Similar to the masters, HAProxy also exposes a /healthz endpoint on port 1936 which can be checked with e.g.:

$ curl -v http://router.app[X].lab.openshift.ch:1936/healthz

Using the wildcard domain to access a router's health page results in a positive answer if at least one router is up and running and that's all we want to know right now.

Note: Port 1936 is not open by default, so it has to be opened at least for those nodes running the router pods. This can be achieved e.g. by setting the ansible variable openshift_node_open_ports (at least as of OpenShift version 3.7 or later).

Apps running on OpenShift should of course be (end-to-end) monitored as well, however, we are not interested in a single application per se. We want to know if all applications of a group of monitored applications do not respond. The more applications not responding the more probable a platform-wide problem is the cause.

Will our cluster remain in an operational state in the near future?

The second category is based on a wider array of checks. It includes checks that take a more "classic" approach such as storage monitoring, but also includes above checks to find out if single cluster members are not healthy.

First, let's look at how to use above checks to answer this second question.

The health endpoint exposed by masters was accessed via load balancer in the first category in order to find out if the API is generally available. This time however we want to find out if at least one of the master APIs is unavailable, even if there still are some that are accessible. So we check every single master endpoint directly instead of via load balancer:

$ for i in {0..2}; curl -v https://master${i}.userX.lab.openshift.ch/healthz; done

The etcd check above is already run against single members of the cluster and can therefore be applied here in the exact same form. The difference only is that we want to make sure every single member is running, not just the number needed to have quorum.

The approach used for the masters also applies to the HAProxy routers. A router pod is effectively listening on the node's interface it is running on. So instead of connecting via load balancer, we use the nodes' IP addresses the router pods are running on. In our case, these are nodes 0 and 1:

$ for i in {0..1}; curl -v http://node${i}.userX.lab.openshift.ch:1936/healthz; done

As already mentioned, finding out if our cluster will remain in an operational state in the near future also includes some better known checks we could call a more conventional components monitoring.

Next to the usual monitoring of storage per partition/logical volume, there's one logical volume on each node of special interest to us: the Docker storage. The Docker storage contains images and container filesystems of running containers. Monitoring the available space of this logical volume is important in order to tune garbage collection. Garbage collection is done by the kubelets running on each node. The available garbage collection kubelet arguments can be found in the official documentation.

Does our cluster have enough capacity to run all pods?


End of Lab 3.6.1

Troubleshooting Using Logs →

← back to overview