Skip to content

Commit

Permalink
Add plugin 'plugin-node-app'
Browse files Browse the repository at this point in the history
  • Loading branch information
imjoehaines committed Jun 11, 2020
1 parent 45390a3 commit d913b23
Show file tree
Hide file tree
Showing 9 changed files with 86 additions and 0 deletions.
1 change: 1 addition & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ module.exports = {
displayName: 'node plugins',
testEnvironment: 'node',
testMatch: [
testsForPackage('plugin-node-app'),
testsForPackage('plugin-server-*')
]
}
Expand Down
1 change: 1 addition & 0 deletions packages/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"@bugsnag/delivery-node": "^7.1.1",
"@bugsnag/plugin-contextualize": "^7.1.1",
"@bugsnag/plugin-intercept": "^7.1.1",
"@bugsnag/plugin-node-app": "^7.1.1",
"@bugsnag/plugin-node-device": "^7.1.1",
"@bugsnag/plugin-node-in-project": "^7.1.1",
"@bugsnag/plugin-node-surrounding-code": "^7.1.1",
Expand Down
2 changes: 2 additions & 0 deletions packages/node/src/notifier.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ const schema = { ...require('@bugsnag/core/config').schema, ...require('./config
// remove enabledBreadcrumbTypes from the config schema
delete schema.enabledBreadcrumbTypes

const pluginApp = require('@bugsnag/plugin-node-app')
const pluginSurroundingCode = require('@bugsnag/plugin-node-surrounding-code')
const pluginInProject = require('@bugsnag/plugin-node-in-project')
const pluginStripProjectRoot = require('@bugsnag/plugin-strip-project-root')
Expand All @@ -26,6 +27,7 @@ const pluginIntercept = require('@bugsnag/plugin-intercept')
const pluginContextualize = require('@bugsnag/plugin-contextualize')

const internalPlugins = [
pluginApp,
pluginSurroundingCode,
pluginInProject,
pluginStripProjectRoot,
Expand Down
19 changes: 19 additions & 0 deletions packages/plugin-node-app/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Copyright (c) Bugsnag, https://www.bugsnag.com/

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the Software
is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
6 changes: 6 additions & 0 deletions packages/plugin-node-app/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# @bugsnag/plugin-node-app

This plugin adds the duration an application has been running for to the `app` section of each event. It is included in the node notifier.

## License
MIT
11 changes: 11 additions & 0 deletions packages/plugin-node-app/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
const appStart = new Date()

module.exports = {
load: client => {
client.addOnError(event => {
const now = new Date()

event.app.duration = now - appStart
}, true)
}
}
22 changes: 22 additions & 0 deletions packages/plugin-node-app/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "@bugsnag/plugin-node-app",
"version": "7.1.1",
"main": "app.js",
"description": "@bugsnag/js plugin to set app info in node",
"homepage": "https://www.bugsnag.com/",
"repository": {
"type": "git",
"url": "git@github.com:bugsnag/bugsnag-js.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"*.js"
],
"author": "Bugsnag",
"license": "MIT",
"devDependencies": {
"@bugsnag/core": "^7.1.1"
}
}
23 changes: 23 additions & 0 deletions packages/plugin-node-app/test/app.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import plugin from '../app'
import Client from '@bugsnag/core/client'

describe('plugin-node-app', () => {
it('includes duration in event.app', done => {
const client = new Client({ apiKey: 'api_key', plugins: [plugin] })

client._setDelivery(client => ({
sendEvent: payload => {
// The maximum number of milliseconds 'duration' should be
const maximum = 1000

expect(payload.events[0].app.duration).toBeGreaterThanOrEqual(0)
expect(payload.events[0].app.duration).toBeLessThanOrEqual(maximum)

done()
},
sendSession: () => {}
}))

client.notify(new Error('acbd'))
})
})
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"packages/plugin-browser-app",
"packages/plugin-browser-context",
"packages/plugin-browser-device",
"packages/plugin-node-app",
"packages/plugin-react-native-app-state-breadcrumbs",
"packages/plugin-react-native-unhandled-rejection",
"packages/plugin-server-session",
Expand Down

0 comments on commit d913b23

Please sign in to comment.