3 Broadcasts the current Apache Connection status over multicast.
6 HeartbeatAddress 239.0.0.1:27999
9 mod_status must be either a static module, or if a dynamic module, it must be
10 loaded before mod_heartbeat.
14 Every 1 second, this module generates a single multicast UDP packet,
15 containing the number of busy and idle workers.
17 The packet is a simple ASCII format, similiar to GET query parameters in UDP.
22 Consumers should handle new variables besides busy and ready, separated by '&'
23 being added in the future.
26 The interval of 1 seconds is controlled by the HEARTBEAT_INTERVAL
27 compile time define. This is not currently tunable at run time. To make this
28 module send the status packet more often, you must add to the CFLAGS used to
29 compile the module to include:
30 -DHEARTBEAT_INTERVAL=3
31 Would cause the broadcasts to be sent every 3 seconds.