Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/talyssonoc/wolverinejs-loggly
Drive for Loggly as output for WolverineJS
https://github.com/talyssonoc/wolverinejs-loggly
Last synced: 19 days ago
JSON representation
Drive for Loggly as output for WolverineJS
- Host: GitHub
- URL: https://github.com/talyssonoc/wolverinejs-loggly
- Owner: talyssonoc
- Created: 2014-08-15T17:31:23.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-08-15T17:33:48.000Z (about 10 years ago)
- Last Synced: 2024-10-23T10:31:03.856Z (21 days ago)
- Language: JavaScript
- Size: 105 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WolverineJS Loggly driver
Driver for using [Loggly](https://www.loggly.com/docs/nodejs-logs/) service as output for [WolverineJS](https://github.com/talyssonoc/WolverineJS).
# Install
```sh
$ npm install wolverinejs-loggly
```# Usage
```js
var Wolverine = require('wolverine');var logger = new Wolverine({
driver: {
lib: require('wolverinejs-loggly'),
config: {
//Your Loggly settings, see the item 2 here:
//https://www.loggly.com/docs/nodejs-logs/
}
}
});
```