We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c620308 commit 83e8a34Copy full SHA for 83e8a34
1 file changed
apache_status/README.mkdn
@@ -6,7 +6,29 @@ python module for ganglia 3.1.
6
"apache_status" sends metrics on Apache process status refering to
7
server-status(mod_status.so).
8
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
30
## AUTHOR
31
32
HIROSE Masaaki <[email protected]>
33
34
+Modified by Vladimir Vuksan
0 commit comments