Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

🔉 This package provides a transport for pino that forwards messages to Loki.

License

NotificationsYou must be signed in to change notification settings

Julien-R44/pino-loki

Repository files navigation

This module provides a transport for pino that forwards messages to a Loki instance.

Why pino-loki

Pino-loki is based upon the highly performant logging library pino. Loki usually gets the logs through Promtail which reads system logs from files. This setup may not always be possible or require additional infrastructure, especially in situations where logs are gathered application code deployed as a SaaS in the cloud. Pino-loki sends the pino logs directly to Loki.

Pino-loki is for Pino v7.0.0 and above, so the module can be configured to operate in a worker thread, which is the recommended way to use it.

Usage

In a worker thread

importpinofrom'pino'importtype{LokiOptions}from'pino-loki'consttransport=pino.transport<LokiOptions>({target:"pino-loki",options:{batching:true,interval:5,host:'https://my-loki-instance:3100',basicAuth:{username:"username",password:"password",},},});constlogger=pino(transport);logger.error({foo:'bar'})

In main process

Seethe example

Library options

labels

Additional labels to be added to all Loki logs. This can be used to add additional context to all logs, such as the application name, environment, etc.

propsToLabels

A list of properties to be converted to loki labels.

levelMap

A map of pino log levels to Loki log levels. This can be used to map pino log levels to different Loki log levels. This is the default map. Left is pino log level, right is Loki log level.

{10:LokiLogLevel.Debug,20:LokiLogLevel.Debug,30:LokiLogLevel.Info,40:LokiLogLevel.Warning,50:LokiLogLevel.Error,60:LokiLogLevel.Critical,},

host

The URL for Loki. This is required.

endpoint

The path to the Loki push API. Defaults to/loki/api/v1/push.

basicAuth

Basic auth credentials for Loki. An object with the following shape:

{username:"username",password:"password",}

headers

A list of headers to be sent to Loki. This can be useful for adding theX-Scope-OrgID header for Grafana Cloud Loki :

{"X-Scope-OrgID":"your-id",})

timeout

A max timeout in miliseconds when sending logs to Loki. Defaults to30_000.

silenceErrors

If false, errors when sending logs to Loki will be displayed in the console. Defaults tofalse.

batching

Should logs be sent in batch mode. Defaults totrue.

interval

The interval at which batched logs are sent in seconds. Defaults to5.

replaceTimestamp

Defaults tofalse. If true, the timestamp in the pino log will be replaced withDate.now(). Be careful when using this option withbatching enabled, as the logs will be sent in batches, and the timestamp will be the time of the batch, not the time of the log.

structuredMetaKey

The key in the pino log object that containsstructured metadata. Defaults toundefined which means that structured metadata will not be sent to Loki. If set tometa for example,{ recordId: 123, traceId: 456 } will be sent if using the following log :

logger.info({meta:{recordId:123,traceId:456}},'Hello')

convertArrays

Defaults tofalse. As documented in theLoki documentation, Loki JSON parser will skip arrays. Setting this options totrue will convert arrays to object with index as key. For example,["foo", "bar"] will be converted to{ "0": "foo", "1": "bar" }.

CLI usage

npm install -g pino-lokinode foo| pino-loki --hostname=http://hostname:3100
$ pino-loki -hOptions:  -V, --version                  output the version number  -u, --user <user>              Loki username  -p, --password <password>      Loki password  --hostname <hostname>          URL for Loki  --endpoint <endpoint>          Path to the Loki push API  -b, --batch                    Should logs be sent in batch mode  -i, --interval <interval>      The interval at which batched logs are sent in seconds  -t, --timeout <timeout>        Timeout for request to Loki  -s, --silenceErrors            If false, errors will be displayed in the console  -r, --replaceTimestamp         Replace pino logs timestamps with Date.now()  -l, --labels <label>           Additional labels to be added to all Loki logs  -a, --convertArrays            If true, arrays will be converted to objects  -pl, --propsLabels <labels>    Fields in log line to convert to Loki labels (comma separated values)  --structuredMetaKey <key>      Key in the pino log object that contains structured metadata  --no-stdout                    Disable output to stdout  -h, --help                     display help for command

Examples

Feel free to explore the different examples in theexamples folder.

  • module_usage.ts - Example of using pino-loki as a module in the main process
  • basic.ts - Basic example of using pino-loki in a worker thread
  • batching.ts - Example of using pino-loki in a worker thread with batching enabled
  • cli.ts - Example of using pino-loki as a CLI
  • custom_timestamp.ts - Example of using pino-loki with nanoseconds timestamps

Usage in AdonisJS

Since AdonisJS use Pino as the default logger, you can use pino-loki easily by adding a new transport to the logger, in theconfig/logger.ts file:

importtype{LokiOptions}from'pino-loki'importappfrom'@adonisjs/core/services/app'import{defineConfig,targets}from'@adonisjs/core/logger'importenvfrom'#start/env'constloggerConfig=defineConfig({default:'app',loggers:{app:{enabled:true,name:env.get('APP_NAME'),level:env.get('LOG_LEVEL'),transport:{targets:targets().push({target:'pino-loki',options:{labels:{application:'MY-APP'},host:env.get('LOKI_HOST'),basicAuth:{username:env.get('LOKI_USERNAME'),password:env.get('LOKI_PASSWORD'),},}satisfiesLokiOptions,}).toArray(),},},},})

And you should be good to go! You can check ourfull example for more details.

Limitations and considerations

Out-of-order errors

Out-of-order Loki errors can occur due to the asynchronous nature of Pino. The fix to this is to allow for out-of-order logs in the Loki configuration. The reason why Loki doesn't have this enabled by default is because Promtail accounts for ordering constraints, however the same issue can also happen with promtail in high-load or when working with distributed networks.

Dropped logs

If any network issues occur, the logs can be dropped. The recommendation is therefore to implement a failover solution, this will vary greatly from system to system.

Node v18+ Required

As the pino-loki library uses the native Node fetch, any consumer must be using a version of Node greater than v18.0.0.

Developing

Requirements

Running a local Loki for testing is probably required, and the easiest way to do that is to follow this guide:https://github.com/grafana/loki/tree/master/production#run-locally-using-docker. After that, Grafana Loki instance is available athttp://localhost:3100, with a Grafana instance running athttp://localhost:3000. Usernameadmin, passwordadmin. Add the Loki source with the URLhttp://loki:3100, and the explorer should work.

Refer tohttps://grafana.com/docs/loki/latest/api/ for documentation about the available endpoints, data formats etc.

Sponsors

If you like this project,please consider supporting it by sponsoring it. It will help a lot to maintain and improve it. Thanks a lot !

License

MIT License © 2022Julien Ripouteau

About

🔉 This package provides a transport for pino that forwards messages to Loki.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp