akka-docs/src/main/paradox/additional/operations.md
This documentation discusses how to operate a cluster. For related, more specific guides see @ref:Packaging, @ref:Deploying and @ref:Rolling Updates.
When starting clusters on cloud systems such as Kubernetes, AWS, Google Cloud, Azure, Mesos or others, you may want to automate the discovery of nodes for the cluster joining process, using your cloud providers, cluster orchestrator, or other form of service discovery (such as managed DNS).
The Akka Management library includes the @extref:Cluster Bootstrap module which handles just that. Please refer to its documentation for more details.
@@@ note
If you are running Akka in a Docker container or the nodes for some other reason have separate internal and external ip addresses you must configure remoting according to @ref:Akka behind NAT or in a Docker container
@@@
See @ref:Rolling Updates, Cluster Shutdown and Coordinated Shutdown.
There are several management tools for the cluster. Complete information on running and managing Akka applications can be found in the @exref:Akka Management project documentation.
<a id="cluster-http"></a>
Information and management of the cluster is available with a HTTP API. See documentation of @extref:Akka Management.
<a id="cluster-jmx"></a>
Information and management of the cluster is available as JMX MBeans with the root name akka.Cluster.
The JMX information can be displayed with an ordinary JMX console such as JConsole or JVisualVM.
From JMX you can:
Member nodes are identified by their address, in format akka://actor-system-name@hostname:port.
Aside from log monitoring and the monitoring provided by your APM or platform provider, Akka Insights, available through a Akka Subscription, can provide additional insights in the run-time characteristics of your application, including metrics, events, and distributed tracing for Akka Actors, Cluster, HTTP, and more.