
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
bunyan-logstash-tcp
Advanced tools
A tcp logger for Logstash
| level | string | "info" |
|---|---|---|
| server | string | os.hostname() |
| host | string | "127.0.0.1" |
| port | number | 9999 |
| application | string | process.title |
| pid | string | process.pid |
| tags | string[] | ["bunyan"] |
var log = bunyan.createLogger({
streams: [
{
type: "raw",
stream: require('bunyan-logstash-tcp').createStream({
host: '127.0.0.1',
port: 9908
})
}
]
});
"use strict";
var bunyan = require('bunyan'),
bunyantcp = require('bunyan-logstash-tcp');
var log = bunyan.createLogger({
name: 'example',
streams: [{
level: 'debug',
stream: process.stdout
},{
level: 'debug',
type: "raw",
stream: bunyantcp.createStream({
host: '127.0.0.1',
port: 9998
})
}],
level: 'debug'
});
log.debug('test');
log.error('error test');
Configuration for Logstash 1.3.3+:
input {
// config for bunyan udp
udp {
'port' => "9999"
}
// config for bunyan tcp
tcp {
'port' => "9998"
}
}
logstash.confinput {
stdin {
type => "stdin-type"
}
udp {
port => "9999"
}
tcp {
port => "9998"
}
}
output {
stdout {}
}
node example/log.jsThis module is heavily based on bunyan-logstash and re-uses parts of winston-logstash.
Thanks to
for their amazing work
MIT
FAQs
Logstash TCP plugin for Bunyan
The npm package bunyan-logstash-tcp receives a total of 2,078 weekly downloads. As such, bunyan-logstash-tcp popularity was classified as popular.
We found that bunyan-logstash-tcp demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.