Re: Connections info

2018-10-05 Thread Abdul Patel
Thanks will try both options On Friday, October 5, 2018, Alain RODRIGUEZ wrote: > Hello Abdul, > > I was caught by a different topic while answering, sending the message > over, even though it's similar to Romain's solution. > > There is the metric mentioned above, or to have more details such a

Re: Connections info

2018-10-05 Thread Alain RODRIGUEZ
Hello Abdul, I was caught by a different topic while answering, sending the message over, even though it's similar to Romain's solution. There is the metric mentioned above, or to have more details such as the app node IP, you can use: $ sudo netstat -tupawn | grep 9042 | grep ESTABLISHED tcp

Re: Connections info

2018-10-05 Thread Romain Hardouin
Note that one "user"/application can open multiple connections. You have also the number of Thrift connections available in JMX if you run a legacy application. Max is right, regarding where they're come from you can use lsof. For instance on AWS - but you can adapt it for your needs: IP=...REG

Re: Connections info

2018-10-04 Thread Max C.
Looks like the number of connections is available in JMX as: org.apache.cassandra.metrics:type=Client,name=connectedNativeClients http://cassandra.apache.org/doc/4.0/operating/metrics.html "Number of clients connected to this nodes na

Connections info

2018-10-04 Thread Abdul Patel
Hi All, Can we get number of users connected to each node in cassandra? Also can we get from whixh app node they are connecting from?