Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hazelcast UI. Is there any Hazelcast UI endpoint which shows the metrics of the server

Tags:

java

hazelcast

I have recently embedded Hazelcast distribution cache into my application and the performance is quiet good. Out of interest I would like to see the data that is stored in the Hazelcast server and any statistics of the server. Is there an UI end-point to see the metrics of the server?

like image 979
Vineeth Chitteti Avatar asked Jan 30 '23 17:01

Vineeth Chitteti


1 Answers

You have 2 options.

(1) You can use the JMX beans that expose metrics and then use a GUI like VisualVM to view...

http://docs.hazelcast.org/docs/latest-development/manual/html/Management/Monitoring_with_JMX.html

(2) For up to 2 members in a cluster you can use the Hazelcast Management Centre which provide visual metrics/graphs etc...

http://docs.hazelcast.org/docs/management-center/3.8.4/manual/html/Deploying_and_Starting.html

like image 172
David Brimley Avatar answered Feb 02 '23 10:02

David Brimley