0.1.0 • Published 10 years ago

winston-kafka v0.1.0

Weekly downloads
4
License
MIT
Repository
github
Last release
10 years ago

winston-kafka

A Kafka transport for winston logging library.

Installation

  $ npm install winston
  $ npm install winston-kafka

Build Status

Usage

  var winston = require('winston');

  // Adds a Kafka transport (it also adds the field `winston.transports.Kafka`)
  winston.add(require('winston-kafka'), options);

The Kafka transport accepts the following options:

  • level: Level of messages that this transport should log (default: 'info').
  • zookeeperHost: Hostname and port to the zookeeper server (host:port).
  • topic: The topic to submit the messages to.

License

MIT