/sentry-cfml

A Sentry Plugin for CFML

Primary LanguagePython

sentry-cfml

sentry-cfml is a Sentry plugin that provides a custom interface that is used with raven-cfml.

Installation

Install source from GitHub

To install the source code:

$ pip install -e git+https://github.com/jmacul2/sentry-cfml.git#egg=sentry_cfml-dev

Configuration

Reference the interface in the init of the raven-cfml client:

<cfset ravenConfig = structNew()>
...
<cfset ravenConfig.customHttpInterface = 'sentry_cfml.interfaces.CFMLHttp'>
...
<cfset ravenClient = createObject('component', '[path.to.raven].lib.client').init(argumentCollection=ravenConfig)>

Resources