graphiteインストール


依存関係の解決
sudo yum -y install bitmap bitmap-fonts Django pycairo python-devel python-ldap python-memcached mod_wsgi mod_python python-sqlite2 glibc-devel gcc gcc-c++ git openssl-devel  httpd memcached python-hashlib django-tagging  python-simplejson pip

Twistedとzopeをインストールします.interface
Twistedはzopeに協力する必要がある.interface 3.6以上のバージョンで使用
wget --no-check-certificate https://pypi.python.org/packages/source/z/zope.interface/zope.interface-4.1.1.tar.gz
 tar xvf zope.interface-4.1.1.tar.gz -C ../src/
 cd ../src/zope.interface-4.1.1/
 sudo python setup.py install
wget --no-check-certificate https://pypi.python.org/packages/source/T/Twisted/Twisted-14.0.1.tar.bz2
 tar xvf Twisted-14.0.1.tar.bz2 -C ../src/
 cd ../src/Twisted-14.0.1/
 sudo python setup.py install

インストール手順
mkdir /home/test/graphite
cd /home/test/graphite
sudo pip install https://github.com/graphite-project/ceres/tarball/master
sudo pip install carbon --install-option="--prefix=/home/test/graphite" --install-option="--install-lib=/home/test/graphite/lib"
sudo pip install whisper (          ,     whisper     )
sudo pip install graphite-web --install-option="--prefix=/home/test/graphite" --install-option="--install-lib=/home/test/graphite/webapp"

sudo pip install daemonize
vi /home/test/graphite/lib/carbon/util.py
   from twisted.scripts._twistd_unix import daemonize    import daemonize

構成の初期化
cd /home/test/graphite/conf
cp carbon.conf.example carbon.conf
cp storage-schemas.conf.example storage-schemas.conf
cp graphite.wsgi.example graphite.wsgi
cp /home/test/graphite/examples/example-graphite-vhost.conf /etc/httpd/conf.d/graphite-vhost.conf
vi  /etc/httpd/conf.d/graphite-vhost.conf
  WSGISocketPrefix /home/test/graphite/wsgi
        opt home/test,   User Group  test
chown -R test.test /var/run/httpd/
mkdir /home/test/graphite/wsgi
vi /home/test/graphite/conf/graphite.wsgi
     sys.path.append('/home/test/graphite/webapp')
vi /home/test/graphite/conf/storage-schemas.conf
                   

whisperの発生データが多すぎて、パーティションのディスク領域を占有/パーティション化することを防止するために、/dataディレクトリに移行する必要があります.
cd /home/test/graphite/storage/
mkdir -pv /data/whisper_new/
ln -s /data/whisper_new/  whisper

データベースを初期化し、サービスを開始するには、次の手順に従います.
sudo chown -R test.test /home/test/graphite
cd /home/test/graphite/webapp/graphite/
cp local_settings.py.example local_settings.py
vi local_settings.py
  #   GRAPHITE_ROOT、WHISPER_DIR、DATABASES   
 GRAPHITE_ROOT = '/home/test/graphite'
 WHISPER_DIR = '/home/test/graphite/storage/whisper'
 DATABASES = {
    'default': {
        'NAME': '/home/test/graphite/storage/graphite.db',
        'ENGINE': 'django.db.backends.sqlite3',
        'USER': '',
        'PASSWORD': '',
        'HOST': '',
        'PORT': ''
    }
}

python manage.py syncdb #  :           test,  [email protected],  test12345,   web          

sudo /etc/init.d/httpd restart
cd /home/test/graphite/
./bin/carbon-cache.py start

テスト
データの手動生成
echo "local.random.diceroll 4 `date +%s`" | nc -q0 127.0.0.1 2003

テストプログラムはデータを生成する:
cd /home/test/graphite/examples/
python example-client.py

複数のcarbon-cacheを起動し、carbon-relayを使用してmetricsを各carbon-cacheにスケジューリングします.
vi /home/test/graphite/conf/carbon.conf
    instance-b instance-c
 [cache:b]
 LINE_RECEIVER_PORT = 2103
 PICKLE_RECEIVER_PORT = 2104
 CACHE_QUERY_PORT = 7102

 [cache:c]
 LINE_RECEIVER_PORT = 2203
 PICKLE_RECEIVER_PORT = 2204
 CACHE_QUERY_PORT = 7202

それぞれinstance-bとinstance-cを起動します
cd /home/test/graphite
bin/carbon-cache.py --instance=b start
bin/carbon-cache.py --instance=c start

relayの構成と起動
vi /home/test/graphite/conf/carbon.conf #   relay  
[relay]
LINE_RECEIVER_INTERFACE = 0.0.0.0
LINE_RECEIVER_PORT = 2013
PICKLE_RECEIVER_INTERFACE = 0.0.0.0
PICKLE_RECEIVER_PORT = 2014
DESTINATIONS = 127.0.0.1:2004:a, 127.0.0.1:2104:b, 127.0.0.1:2204:c

relayルールも定義できます.
vi /home/test/graphite/conf/relay-rules.conf
[servers]
pattern = ^servers\.
destinations = 127.0.0.1:2004:a, 127.0.0.1:2104:b, 127.0.0.1:2204:c
[default]
default = true
destinations = 127.0.0.1:2004:a, 127.0.0.1:2104:b, 127.0.0.1:2204:c

relayプログラムを起動するには、次の手順に従います.
cd /home/test/graphite
./bin/carbon-relay.py start
     diamond.conf        carbon     carbon-relay   2013 2014

その他
graphiteの依存関係を確認する
wget http://launchpad.net/graphite/0.9/0.9.9/+download/graphite-web-0.9.9.tar.gz
tar zxvf graphite-web-0.9.9.tar.gz -C ../src
cd /home/test/software/src/graphite-web-0.9.9/
python check-dependencies.py

本文は「~」ブログから、転載お断り!