You can enable the heartbeat monitoring in Axon Server in order to activate an high level monitoring of client connection availability.
As gRPC already provides an internal heartbeat, this feature is to cover the scenarios for which the gRPC implementation does not suffice.
axoniq.axonserver.heartbeat.enabled=true
Please note that, in order to have this feature properly working, also the client should enable the Heartbeat Monitoring functionality.
Configurer configurer = DefaultConfigurer.defaultConfiguration()
.registerModule(new HeartbeatConfiguration());
by configuring the following property:
axon.axonserver.heartbeat.enabled=true
Axon Framework Compatibility
Axon Framework supports heartbeat monitoring starting from 4.2.1 version.