blob: 0cb70bcb98e82de9dd7eb9506a5c9b86b345d3b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
mod_heartmonitor
Collects the Apache Connection status data over multicast.
Example Configuration:
# First parameter is the interface to listen on
HeartbeatListen 239.0.0.1:27999
# Absolute path, or relative path to ServerRoot
HeartbeatStorage logs/hb.dat
Dependencies:
Due to a bug in APR's apr_socket_recvfrom, version 1.2.12 or newer must be
used:
<http://svn.apache.org/viewvc?view=rev&revision=467600>
Consuming:
This module atomically writes to the configured path, a list of servers,
along with metadata about them.
Included data about each server:
- IP Address
- Busy Slots
- Open Slots
- Last Seen
Every 5 seconds, this file will be updated with the current status of the
cluster.
|