3.1.1-rc5 • Published 5 years ago

winston-ovh v3.1.1-rc5

Weekly downloads
21
License
MIT
Repository
github
Last release
5 years ago

winston-ovh

An OVH Logs data platform transport for NodeJS Winston logger.

Motivation

tldr;?: To break the winston codebase into small modules that work together.

The winston codebase has been growing significantly with contributions and other logging transports. This is awesome. However, taking a ton of additional dependencies just to do something simple like logging to the Console and a File is overkill.

Installation

npm install --save winston-ovh

Usage

import { createLogger, transports } from 'winston'
import ovhTransporter from 'winston-ovh'

const logger = createLogger({
  level: 'silly',
  transports: [
    new transports.Console(),
    new ovhTransporter({
      host: 'graxxx.logs.ovh.com',
      token: 'YOUR_TOKEN',
      level: 'silly'
    })
  ]
})

logger.error('test error', { some: true })
logger.warn('test warn', { myField: 'test' })
logger.info('test info', { myNumber: 50 })
logger.debug('test debug')
logger.verbose('test verbose', { place: '48.4070554,-4.495554' })
logger.silly('test silly')

The ovh transport takes the following options. 'token' is required:

  • token: Logs data platform key
  • level: Level of messages that this transport should log, defaults to 'debug'
  • host: Logs data platform endpoint

Due to LAAS naming conventions, all meta data must be suffixing with his type. Ex: myBool => myBool_bool myNumber => myNumber_int

Don't take care of it, winston-ovh will suffix your data

3.1.1-rc5

5 years ago

3.1.1-rc4

5 years ago

3.1.1-rc3

5 years ago

3.1.1-rc2

5 years ago

3.1.1

5 years ago

3.1.0

5 years ago

3.0.5

6 years ago

3.0.4

6 years ago

3.0.3

6 years ago

3.0.2

6 years ago

3.0.1

6 years ago

3.0.0

6 years ago

2.1.0

7 years ago

2.0.0

7 years ago

1.2.2

8 years ago

1.2.1

8 years ago

1.2.0

8 years ago

1.0.0

8 years ago