-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1151 from appsignal/pino-transport-as-transport
Allow Pino transport to be used as transport
- Loading branch information
Showing
4 changed files
with
82 additions
and
26 deletions.
There are no files selected for viewing
50 changes: 50 additions & 0 deletions
50
.changesets/allow-pino-transport-to-be-used-as-a-transport.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
bump: patch | ||
type: fix | ||
--- | ||
|
||
Allow Pino transport to be used as a transport. Before, our Pino transport could only be used as a destination: | ||
|
||
```js | ||
import pino from "pino"; | ||
import { Appsignal, AppsignalPinoTransport } from "@appsignal/nodejs"; | ||
|
||
pino(AppsignalPinoTransport({ | ||
client: Appsignal.client, | ||
group: "pino" | ||
})); | ||
``` | ||
|
||
This meant it was not possible to log both to our transport and to another destination. | ||
|
||
Now, it is also possible to use it as a Pino transport, with the `transport` Pino config option or the `pino.transport()` function: | ||
|
||
```js | ||
import pino from "pino"; | ||
|
||
pino({ | ||
transport: { | ||
target: "@appsignal/nodejs/pino", | ||
options: { | ||
group: "pino" | ||
} | ||
} | ||
}); | ||
``` | ||
|
||
It is no longer necessary to pass the AppSignal client to the Pino transport. AppSignal must be active for the Pino transport to work. | ||
|
||
By enabling its use as a transport, it is now possible to use it alongside other transports: | ||
|
||
```js | ||
pino({ | ||
transport: { | ||
targets: [ | ||
// Send logs to AppSignal... | ||
{ target: "@appsignal/nodejs/pino" }, | ||
// ... and to standard output! | ||
{ target: "pino/file" } | ||
] | ||
} | ||
}); | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
* | ||
!/dist/**/* | ||
!/pino/**/* | ||
!/scripts/**/* | ||
scripts/**/*.test.js | ||
!/ext/appsignal_extension.cpp | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
"use strict" | ||
module.exports = require("../dist/pino_transport") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters