The traditional concepts in monitoring
Monitoring is a problem that has been solved in many different ways for many different levels of stack. Let's take a look at different demographics of monitoring:
- Availability monitoring (up/down monitoring)Â
- Performance monitoring (time series—CPU, memory, utilization, and so on)Â
In the infrastructure side of things, availability monitoring and performance monitoring are both used, but the application side is a little heavy on the performance monitoring as the availability of the application is monitored on the infrastructure level itself by the load balancers and the likes.
The following diagram shows the different protocols that are generally used in monitoring systems of different types:
Availability monitoringÂ
This is the simplest kind of monitoring, which marks the object that is being monitored as either up or down. This is generally done using several protocols such as ICMP (ICMP_ECHO
) and sometimes even TCP and UDP (or enhanced verification on...