https://github.com/actionhero/ah-airbrake-plugin
actionhero plugin for airbrake
https://github.com/actionhero/ah-airbrake-plugin
Last synced: 11 months ago
JSON representation
actionhero plugin for airbrake
- Host: GitHub
- URL: https://github.com/actionhero/ah-airbrake-plugin
- Owner: actionhero
- Archived: true
- Created: 2014-03-20T18:33:01.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2017-03-07T16:33:23.000Z (over 9 years ago)
- Last Synced: 2024-05-01T23:24:39.470Z (about 2 years ago)
- Language: JavaScript
- Size: 703 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## notes
- be sure to enable the plugin within actionhero (`config/plugins.js`)
- you will need to add the airbrake package (`npm install airbrake --save`) to your package.json
You can add a deployment drunt task to clear the previous deploy's errors:
```javascript
grunt.registerTask('notifyAirbrakeDeploy','tell airbrake we deployed',function(message){
var done = this.async()
init(function(api){
api.airbrake.configure();
api.airbrake.client.trackDeployment(function(){
done();
})
})
})
```