Middleware for tracking Falcon requests/responses with Elastic APM.
This package provides a middleware for monitoring Falcon applications with Elastic APM. The middleware hooks into Falcon's request and response processing and maintains an Elastic APM client to track transactions and metadata.
You can install the latest stable version from PyPI:
$ pip install elastic-apm-falcon
You can add elastic_apm_falcon
like any other middleware to your Falcon application. However,
you should make sure to import and instrument elasticapm
as early as possible.
# import and instrument elasticapm as early as possible
import elasticapm
elasticapm.instrument()
# import remaining modules
import falcon
from elastic_apm_falcon import ElasticApmMiddleware
# initialize Elastic APM middleware
elastic_apm_middleware = ElasticApmMiddleware(service_name="your_service")
# initialize Falcon application
application = falcon.App(middleware=elastic_apm_middleware)
# add routes and resources to your application below
...
This package is licensed under the terms of the MIT license.
Made with ♥ at snapADDY.