bunyan-usergrid

Send data from bunyan to usergrid

Usage no npm install needed!

<script type="module">
  import bunyanUsergrid from 'https://cdn.skypack.dev/bunyan-usergrid';
</script>

README

bunyan-usergrid

Build Status

Send bunyan logs into Usergrid

Installation

npm install bunyan-usergrid

Usage

Ensure stream type is set to raw

var bunyan = require('bunyan')
  , bunyanUsergrid = require('bunyan-usergrid')
  , opts =
    { collection: 'test'
    , auth:
      { host: 'https://localhost'
      , org: 'org'
      , app: 'app'
      , grantType: 'client_credentials'
      , clientId: 'client'
      , clientSecret: 'such secret, much wow'
      }
    }

var logger = bunyan.createLogger(
  { name: 'test'
  , streams: [ { type: 'raw', stream: bunyanUsergrid(opts) } ]
  })