Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nathanlentz/pino-applicationinsights-transport
A pino v7+ transport for sending logs to Application Insights.
https://github.com/nathanlentz/pino-applicationinsights-transport
applicationinsights azure pino typescript
Last synced: 2 months ago
JSON representation
A pino v7+ transport for sending logs to Application Insights.
- Host: GitHub
- URL: https://github.com/nathanlentz/pino-applicationinsights-transport
- Owner: nathanlentz
- Created: 2024-07-12T02:47:02.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-18T14:18:53.000Z (6 months ago)
- Last Synced: 2024-10-12T08:48:03.717Z (3 months ago)
- Topics: applicationinsights, azure, pino, typescript
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/pino-applicationinsights-transport
- Size: 111 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pino-applicationinsights-transport
A pino v7+ transport for sending logs to Application Insights.
It uses applicationinsights to send logs using the v2 node telemetry client.
## Installation Instructions
`npm install pino-applicationinsights-transport`
```ts
import { LoggerOptions, pino } from "pino";const logger = pino({
level: "trace",
transports: [
{
target: "pino-applicationinsights-transport",
options: {},
},
],
});
``````
```
```
```