newrelic-config

0.0.1 • Public • Published

newrelic-config

Introduction

newrelic-config is a newrelic configurator, wrapping node-newrelic. It simplifies the default configuration scheme into a chainable API

Dependencies

Example

Minimal required:

require('newrelic-config')
  .key('<your api key>')
  .name('<your app name>')
  .profile();

Complete example:

require('newrelic-config')
  .key('<your api key>')
  .name('<your app name>')
  .log('/dev/null', 'trace')
  .proxy('localhost', 8080)
  .errors([404, 401])
  .profile();

Methods

NewRelic#name(name)

Set new relic app name

NewRelic#key(key)

Set new relic license key

NewRelic#log(dest, level)

Set new relic logging options

  • dest - log destination (file, stderr or stdout)

NewRelic#proxy(host, port)

Set proxy options

  • host - proxy hostname
  • port - proxy port

NewRelic#errors(ignored)

Enable error tracing

  • ignored - error codes to ignore

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.1
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.0.1
    1

Package Sidebar

Install

npm i newrelic-config

Weekly Downloads

1

Version

0.0.1

License

BSD

Last publish

Collaborators

  • adamvr