Nginx: Monitoring Statistics: Difference between revisions

From OnnoCenterWiki
Jump to navigationJump to search
Onnowpurbo (talk | contribs)
No edit summary
Onnowpurbo (talk | contribs)
No edit summary
Line 1: Line 1:
This script is very easy to install and configure. You can use following steps to get pretty stats graph for your nginx-powered server:
Script untuk monitoring statistics Nginx relatif mudah di instalasi dan di konfigurasi. Kita perlu melakukan langkah berikut untuk memperoleh gambar statistik dari server nginx.


Modify your nginx config file and add following location to it:
Ubah konfigurasi file ngix dan tambahkan kalimat berikut
 
vi /etc/nginx/sites-enabled/default


  http {
  http {
Line 19: Line 21:
  }
  }


Test your config file with following command:
Test file konfigurasi


  # /your/installation/sbin/nginx -t
  /etc/init.d/nginx stop
  2006/04/29 04:24:36 [info] 31676#0: the configuration file /opt/nginx/conf/nginx.conf syntax is ok
  /usr/sbin/nginx -t
2006/04/29 04:24:36 [info] 31676#0: the configuration file /opt/nginx/conf/nginx.conf was tested successfully


  #
  the configuration file /etc/nginx/nginx.conf syntax is ok
  # If you will get error about stub_status directive, check your nginx – it should be configured with —-with-http_stub_status_module option. If your configuration is OK, you can restart nginx and test it:
  configuration file /etc/nginx/nginx.conf test is successful
  # GET http://your-domain.com/nginx_status
 
  Active connections: 1492
 
Jika ada error tentang stub_status, check nginx. Nginx harusnya di konfigurasi dengan —-with-http_stub_status_module. Jika semua OK menggunakan shell lakukan test
  # GET http://hostname.anda/nginx_status
 
  Active connections: 1
  server accepts handled requests
  server accepts handled requests
2124355 2124355 8278635
  1 1 1
  Reading: 6 Writing: 405 Waiting: 1081
  Reading: 0 Writing: 1 Waiting: 0
Download  perl script: rrd_nginx.pl and make it executable with
 
Download  perl script: rrd_nginx.pl dan jadikan executable


cd /usr/local/src/
  wget http://kovyrin.net/files/mrtg/rrd_nginx.pl.txt
  wget http://kovyrin.net/files/mrtg/rrd_nginx.pl.txt
  mv rrd_nginx.pl.txt rrd_nginx.pl
  mv rrd_nginx.pl.txt rrd_nginx.pl

Revision as of 09:37, 22 February 2011

Script untuk monitoring statistics Nginx relatif mudah di instalasi dan di konfigurasi. Kita perlu melakukan langkah berikut untuk memperoleh gambar statistik dari server nginx.

Ubah konfigurasi file ngix dan tambahkan kalimat berikut

vi /etc/nginx/sites-enabled/default 
http {
  …
    server {
      listen SOME.IP.ADD.RESS;
      …
      location /nginx_status {
        stub_status on;
        access_log   off;
        allow SOME.IP.ADD.RESS;
        deny all;
        }
    …
    }
  …
}

Test file konfigurasi

/etc/init.d/nginx stop
/usr/sbin/nginx -t
the configuration file /etc/nginx/nginx.conf syntax is ok
configuration file /etc/nginx/nginx.conf test is successful


Jika ada error tentang stub_status, check nginx. Nginx harusnya di konfigurasi dengan —-with-http_stub_status_module. Jika semua OK menggunakan shell lakukan test

# GET http://hostname.anda/nginx_status
Active connections: 1 
server accepts handled requests
 1 1 1 
Reading: 0 Writing: 1 Waiting: 0 

Download perl script: rrd_nginx.pl dan jadikan executable

cd /usr/local/src/
wget http://kovyrin.net/files/mrtg/rrd_nginx.pl.txt
mv rrd_nginx.pl.txt rrd_nginx.pl
chmod +x rrd_nginx.pl

hange settings in rrd_nginx.pl to let script know where it will save rrd-base and images:

#!/usr/bin/perl
use RRDs;
use LWP::UserAgent;
# define location of rrdtool databases
my $rrd = ‘/opt/rrd’;
# define location of images
my $img = ‘/opt/rrd/html’;
# define your nginx stats URL
my $URL = “http://your-domain.com/nginx_status”;

Last step is to insert following string to /etc/crontab file and to restart cron daemon:

* *     * * *   root    /some/path/rrd_nginx.pl  When all preparations will be finished, you get  images in your $img directory: 

Referensi

Pranala Menarik