How I can check total request connection on a microservice?
4 Likes
@Shakir , @nishant Kindly look into this.
3 Likes
We can check using below commands:
netstat -ano | grep <PORT> => It will give all connection details
netstat -ano | grep <PORT> | grep ESTABLISHED => it will give ESTABLISHED connection details
netstat -ano | grep <PORT> | grep ESTABLISHED | wc -l => it will give ESTABLISHED connection count
4 Likes