
--
You received this message because you are subscribed to the Google Groups "Hazelcast" group.
To unsubscribe from this group and stop receiving emails from it, send an email to hazelcast+...@googlegroups.com.
To post to this group, send email to haze...@googlegroups.com.
Visit this group at https://groups.google.com/group/hazelcast.
To view this discussion on the web visit https://groups.google.com/d/msgid/hazelcast/750e22ac-938a-4c81-af4e-e776ed907bb6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/hazelcast/CAGQo_5xi_UHog4-ZfJFmn5ab7P6EKZTUWeZxTi1QPsywgvfF0A%40mail.gmail.com.
>But, i use hazelcast inside a java maven project, I want to get all members' cpu and memory status, all maps and entries count of each map etc...Just wanted to clarify that you can still use Management Center for embedded setups.
On Fri, Jun 28, 2019 at 11:19 AM Thomas Kountis <thomas...@hazelcast.com> wrote:
Hi,Have you tried enabling JMX in Hazelcast? Most of the info available on management center is also available through JMX.
On Fri 28 Jun 2019 at 09:17, xing zhang <profzh...@gmail.com> wrote:
Hi All:When I deploy hazelcast cluster, management center can be started. Lots information about the cluster is shown.But, i use hazelcast inside a java maven project, I want to get all members' cpu and memory status, all maps and entries count of each map etc...Please tell me how to do.Thanks!
--
You received this message because you are subscribed to the Google Groups "Hazelcast" group.
To unsubscribe from this group and stop receiving emails from it, send an email to haze...@googlegroups.com.
To post to this group, send email to haze...@googlegroups.com.
Visit this group at https://groups.google.com/group/hazelcast.
To view this discussion on the web visit https://groups.google.com/d/msgid/hazelcast/750e22ac-938a-4c81-af4e-e776ed907bb6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Hazelcast" group.
To unsubscribe from this group and stop receiving emails from it, send an email to haze...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to hazelcast+...@googlegroups.com.
To post to this group, send email to haze...@googlegroups.com.
Visit this group at https://groups.google.com/group/hazelcast.
To view this discussion on the web visit https://groups.google.com/d/msgid/hazelcast/36e4bcde-1438-46cf-b519-f1c8b4da7333%40googlegroups.com.
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast-all</artifactId>
<version>3.11</version>
</dependency>
Config conf = new Config();
conf.getManagementCenterConfig().setEnabled(true);
conf.getManagementCenterConfig().setUrl("http://localhost:8081/hazelcast-mancenter");
To unsubscribe from this group and stop receiving emails from it, send an email to hazelcast+...@googlegroups.com.
To post to this group, send email to haze...@googlegroups.com.
Visit this group at https://groups.google.com/group/hazelcast.
To view this discussion on the web visit https://groups.google.com/d/msgid/hazelcast/b0a14da3-3c9f-41c7-a500-cbd1515a11e1%40googlegroups.com.
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast-all</artifactId>
<version>3.11</version>
</dependency>
Config conf = new Config();
conf.setProperty("hazelcast.logging.type", "log4j");
conf.getNetworkConfig().setPublicAddress(Consts.hazelcastHost);
conf.getNetworkConfig().setPort(Consts.hazelcastPort);
conf.getNetworkConfig().getJoin().getMulticastConfig().setEnabled(true);
conf.getNetworkConfig().getJoin().getTcpIpConfig().setEnabled(false);
conf.getManagementCenterConfig().setEnabled(true);
conf.getManagementCenterConfig().setUrl("http://localhost:5709/hazelcast-mancenter");
conf.setInstanceName(instanceName);