How I can check total request connection on a microservice?

How I can check total request connection on a microservice?

4 Likes

@Vikas_Dhillon Could you pls provide the information on this.

3 Likes

@simran.sachdeva : Requesting to coordinate with Infra team

2 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

Thanks @naveen.gupta

2 Likes