Category: Docker, nginx

by Nowadays any application is API based or distributed where one request is not just served by one application but a series of applications either parallel or serial.

Recently we wanted to evaluate which protocol is suitable for our micro-service architecture as our payload size was getting increased quite considerably. To determine that we want to know maximum payload size and minimum, as our payload size is directly proportional to items selected.

After looking at all tools, we decided to front our swarm service using Nginx so that we can capture payload size and uniquely logs each service request.

Related Articles