root / plugins / nginx / nginx_byprojects / README.md @ 17f78427
Historique | Voir | Annoter | Télécharger (2,17 ko)
| 1 |
# The 'byprojects' family |
|---|---|
| 2 |
Those plugins are used to monitor different projects or vhost (i.e. either different log files or using regular expression as filters) on the same web server. |
| 3 |
|
| 4 |
## munin_byprojects_access |
| 5 |
Count the number of hits per projects/vhost. |
| 6 |
 |
| 7 |
|
| 8 |
## munin_byprojects_bandwidth |
| 9 |
Count the total bandwidth used by each projects/vhost. [Logtail](https://www.fourmilab.ch/webtools/logtail/) is required. |
| 10 |
 |
| 11 |
|
| 12 |
## munin_byprojects_inout_bandwidth |
| 13 |
Counts the in/out bandwidth used by each projects/vhost. [Logtail](https://www.fourmilab.ch/webtools/logtail/) is required. |
| 14 |
 |
| 15 |
|
| 16 |
## Installation |
| 17 |
The setup is pretty straight forward. First you need to configure the plugin: |
| 18 |
|
| 19 |
In your munin plugin configuration file (for example, a new dedicated /etc/munin/plugin-conf.d/nginx_byprojects), configure the plugins: |
| 20 |
|
| 21 |
[byprojects_*] |
| 22 |
env.logtail /usr/local/bin/logtail |
| 23 |
|
| 24 |
Multiple logs can be used for the same project/vhost and a regular expression (regex) can be used as a filter. |
| 25 |
Each log is defined in a dedicated environment variable, named env.site.[siteName]. The value is JSON formatted. |
| 26 |
|
| 27 |
env.site.prod [{"path":"/home/prod/log/access.log"}]
|
| 28 |
env.site.dev [{"path":"/var/log/httpd/ssl-dev-access.log"}, {"path":"/home/dev/log/access*.log"}]
|
| 29 |
env.site.test [{"path":"/var/log/access.log","regex":"\"[A-Z]+ /test/"}, {"path":"/home/test/log/access.log"}]
|
| 30 |
|
| 31 |
In the previous example the prod project graph will be using everything in /home/prod/log/access.log. The test project will be using eveything in /home/test/log/access.log and stuff that match '"[A-Z] /test/' in /var/log/httpd/access.log (e.g. "GET /test/). |
| 32 |
|
| 33 |
Then link the file just as any other plugins. |
| 34 |
|
| 35 |
ln -s /usr/local/sbin/<plugin> /usr/local/etc/munin/plugins/<plugin> |
| 36 |
|
| 37 |
And restart the munin-node service. |
| 38 |
|
| 39 |
## License |
| 40 |
MIT |
