Blame modules/cluster/README.heartmonitor

Packit 90a5c9
mod_heartmonitor
Packit 90a5c9
Packit 90a5c9
Collects the Apache Connection status data over multicast.
Packit 90a5c9
Packit 90a5c9
Example Configuration:
Packit 90a5c9
  # First parameter is the interface to listen on
Packit 90a5c9
  HeartbeatListen 239.0.0.1:27999
Packit 90a5c9
  # Absolute path, or relative path to ServerRoot
Packit 90a5c9
  HeartbeatStorage logs/hb.dat
Packit 90a5c9
Packit 90a5c9
Dependencies:
Packit 90a5c9
  Due to a bug in APR's apr_socket_recvfrom, version 1.2.12 or newer must be
Packit 90a5c9
  used:
Packit 90a5c9
    <http://svn.apache.org/viewvc?view=rev&revision=467600>
Packit 90a5c9
Packit 90a5c9
Consuming:
Packit 90a5c9
  This module atomically writes to the configured path, a list of servers, 
Packit 90a5c9
  along with metadata about them.
Packit 90a5c9
  
Packit 90a5c9
  Included data about each server:
Packit 90a5c9
    - IP Address
Packit 90a5c9
    - Busy Slots
Packit 90a5c9
    - Open Slots
Packit 90a5c9
    - Last Seen
Packit 90a5c9
Packit 90a5c9
  Every 5 seconds, this file will be updated with the current status of the 
Packit 90a5c9
  cluster.
Packit 90a5c9
Packit 90a5c9
  
Packit 90a5c9