New Relic library for Paperbits.
npm install @paperbits/newrelicbash
npm i @paperbits/newrelic --save
`
Usage
Add imports and registration to startup.publish.ts file of your project:
`ts
import { NewrelicPublishModule } from "@paperbits/newrelic";
injector.bindModule(new NewrelicPublishModule());
`
Add NewRelic integration settings to your application data:
`json
{
"settings": {
"integration": {
"newrelic": {
"licenseKey": "NRJS-XXXXXXXXXXXXXXXXXXX",
"appId": "XXXXXXXXX",
"accountId": "XXXXXXX"
}
}
}
}
``