Monitoring challenges
Microservice monitoring presents different challenges. There will be scenarios where one service could depend upon another service, or a client sends a request to one service and the response comes from another service that would make the operation complex; hence scaling a microservice would be a challenging task here. Similarly, process implementation, let's say DevOps, would be a challenging job while implementing a huge enterprise microservice application. So, let's discuss these challenges in this section.
Scale
One service could be dependent upon the functionality provided by various other microservices. This yields complexity, which is not usual in the case of .NET monolith systems. Instrumenting all these dependencies is quite difficult. Another problem that comes along with scale is the rate of change. With the advancement of continuous deployment and container-based microservices, the code is always in a deployable state. Containers only live for minutes, if...