Skip to content

Commit 83e8a34

Browse files
committed
Add documentation blurb to Apache Status
1 parent c620308 commit 83e8a34

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

apache_status/README.mkdn

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,29 @@ python module for ganglia 3.1.
66
"apache_status" sends metrics on Apache process status refering to
77
server-status(mod_status.so).
88

9+
To use this you will need to enable mod_status in Apache. For example you
10+
add following to your Apache config.
11+
12+
Listen 8001
13+
<VirtualHost *:8001>
14+
ServerName health.site
15+
<Location /server-status>
16+
SetHandler server-status
17+
Order deny,allow
18+
Deny from all
19+
Allow from 127.0.0.1
20+
</Location>
21+
</VirtualHost>
22+
23+
Restart Apache. Now you should be able to hit
24+
25+
http://localhost:8001/server-status
26+
27+
on the box and get a web page with Apache status.
28+
29+
930
## AUTHOR
1031

1132
HIROSE Masaaki <[email protected]>
1233

34+
Modified by Vladimir Vuksan

0 commit comments

Comments
 (0)