Can anybody help in integrating newrelic with falcon framework? Has anybody tried it
After some deep dive into the code, found a way to integrate newrelic with falcon.
import newrelic.agent
newrelic.agent.initialize('newrelic.ini')
.
.
.
api = application = newrelic.agent.WSGIApplicationWrapper(falcon.API())
Most helpful comment
After some deep dive into the code, found a way to integrate newrelic with falcon.
import newrelic.agent
newrelic.agent.initialize('newrelic.ini')
.
.
.
api = application = newrelic.agent.WSGIApplicationWrapper(falcon.API())