Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Humio Winston transport link to docs #1705

Merged
merged 1 commit into from
Sep 19, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion docs/transports.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ there are additional transports written by
* [Google BigQuery](#google-bigquery)
* [Google Stackdriver Logging](#google-stackdriver-transport)
* [Graylog2](#graylog2-transport)
* [Humio](#humio-transport)
* [LogDNA](#logdna-transport)
* [Logsene](#logsene-transport) (including Log-Alerts and Anomaly Detection)
* [Logz.io](#logzio-transport)
Expand Down Expand Up @@ -525,6 +526,23 @@ const logger = winston.createLogger({
})
```

### Humio Transport

[humio-winston][44] is a transport for sending logs to Humio:

``` js
const winston = require('winston');
const HumioTransport = require('humio-winston');

const logger = winston.createLogger({
transports: [
new HumioTransport({
ingestToken: '<YOUR HUMIO INGEST TOKEN>',
}),
],
});
```

### LogDNA Transport

[LogDNA Winston][37] is a transport for being able to forward the logs to [LogDNA](https://logdna.com/):
Expand Down Expand Up @@ -943,4 +961,4 @@ That's why we say it's a logger for just about everything
[41]: https://github.com/aandrewww/winston-transport-sentry-node
[42]: https://github.com/kaminskypavel/winston-bigquery
[43]: https://www.npmjs.com/package/winston-bigquery

[44]: https://github.com/Quintinity/humio-winston