pino-seq
v4.0.0
Published
A stream that sends Pino log events to Seq
Downloads
25,738
Readme
pino-seq

A stream to send Pino events to Seq. Tested with Node.js versions 18.x and up.
Now written in TypeScript with automatic type definitions and full ES Module support!
Installation
npm install pino-seqUsage
Use the createStream() method to create a Pino stream configuration, passing serverUrl, apiKey and batching parameters.
This example works in both JavaScript and TypeScript projects:
import pino from 'pino';
import { createStream } from 'pino-seq';
// Create a stream to Seq
const stream = createStream({
serverUrl: 'http://localhost:5341',
apiKey: 'your-api-key' // optional
});
// Create a Pino logger
const logger = pino({ name: 'pino-seq example' }, stream);
// Log some messages
logger.info('Hello Seq, from Pino');
// Child loggers work too
const frLogger = logger.child({ lang: 'fr' });
frLogger.warn('au reviour');
// Flush logs before exit
await stream.flush();For TypeScript projects with explicit typing:
import { createStream, PinoSeqStreamConfig } from 'pino-seq';
const config: PinoSeqStreamConfig = {
serverUrl: 'http://localhost:5341',
// ... see Configuration section below for all options
};
const stream = createStream(config);Configuration
The createStream() function accepts a configuration object with the following properties:
serverUrl(string): The URL of your Seq serverapiKey(string, optional): API key for authenticationlogOtherAs(string, optional): Log level for unstructured messages ('Verbose', 'Debug', 'Information', 'Warning', 'Error', 'Fatal')additionalProperties(object, optional): Additional properties to add to all log eventsmaxBatchingTime(number, optional): Maximum time in milliseconds to wait before sending a batcheventSizeLimit(number, optional): Maximum size of a single eventbatchSizeLimit(number, optional): Maximum size of a batchonError(function, optional): Error handler callback
Acknowledgements
Originally by Simi Hartstein and published as simihartstein/pino-seq; maintainership transferred to Datalust at version 0.5.
