Django NewRelic Quickstart (gunicorn.d + Django 1.3 hack)

jieforest發表於2012-05-30
[i=s] 本帖最後由 jieforest 於 2012-5-30 09:46 編輯

New Relic is an excellent webapplication performance reporting tool. After a great experience using it onHeroku, I went to enable it for an existing self-hosted application. WhileDjango 1.4 has an excellent WSGI configuration build-in, Django 1.3 makes it alittle trickier. To complicate matters even more, I was using debian's gunicornpackage, which not not make changing the Django executable easy.


New Relic has excellent documentation for downloading, installing andconfiguring their tools. Here are my crib notes:

CODE:

1.view plainprint?
2.
3.pip install newrelic django-newrelic-extensions
4.# sign up on newrelic.com, get $LICENSE_KEY under "Account Settings"
5.mkdir /etc/newrelic
6.newrelic-admin generate-config $LICENSE_KEY /etc/newrelic/newrelic.ini
7.newrelic-admin validate-config /etc/newrelic/newrelic.ini


[size=11.5pt]You should now be able to log in tonew relic and see an application called "Python Agent Test". Thismeans that the test worked; new relic can communicate with the hosted servers.You can run gunicorn manually from the command line with new relic as follows:

CODE:

1.view plainprint?
2.
3.cd /opt/my-django-project
4.export NEW_RELIC_CONFIG_FILE=/etc/newrelic/newrelic.ini
5.newrelic-admin run-program python manage.py run_gunicorn




來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/301743/viewspace-731438/,如需轉載,請註明出處,否則將追究法律責任。

相關文章