diff --git a/docs/transports.md b/docs/transports.md index 0e45730e3..83d052030 100644 --- a/docs/transports.md +++ b/docs/transports.md @@ -427,6 +427,7 @@ PRs to this document are welcome for any new transports! + [pino-telegram-webhook](#pino-telegram-webhook) + [pino-yc-transport](#pino-yc-transport) + [@macfja/pino-fingers-crossed](#macfja-pino-fingers-crossed) ++ [pino-hana](#pino-hana) ### Legacy @@ -1142,6 +1143,30 @@ logger.info('Will NOT appear') logger.info({ [enable]: false }, 'Will appear immedialty') logger.info('Will NOT appear') ``` + +### pino-hana +[pino-hana](https://github.com/HiImGiovi/pino-hana) is a Pino v7+ transport that save pino logs to a SAP HANA database. +```js +const pino = require('pino') +const logger = pino({ + transport: { + target: 'pino-hana', + options: { + connectionOptions: { + host: , + port: , + user: , + password: , + }, + schema: , + table: , + }, + }, +}) + +logger.info('hi') // this log will be saved into SAP HANA +``` +For more detailed information about its usage please check the official [documentation](https://github.com/HiImGiovi/pino-hana#readme). ## Communication between Pino and Transports