
Product
Secure Your AI-Generated Code with Socket MCP
Socket MCP brings real-time security checks to AI-generated code, helping developers catch risky dependencies before they enter the codebase.
bunyan-logstash-tcp-fork
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.conf
input {
stdin {
type => "stdin-type"
}
udp {
port => "9999"
}
tcp {
port => "9998"
}
}
output {
stdout {}
}
node example/log.js
This module is heavily based on bunyan-logstash and re-uses parts of winston-logstash.
Thanks to
for their amazing work
MIT
1.0.0
FAQs
Logstash TCP plugin for Bunyan
The npm package bunyan-logstash-tcp-fork receives a total of 52 weekly downloads. As such, bunyan-logstash-tcp-fork popularity was classified as not popular.
We found that bunyan-logstash-tcp-fork demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Product
Socket MCP brings real-time security checks to AI-generated code, helping developers catch risky dependencies before they enter the codebase.
Security News
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
Research
Security News
Socket’s Threat Research Team has uncovered 60 npm packages using post-install scripts to silently exfiltrate hostnames, IP addresses, DNS servers, and user directories to a Discord-controlled endpoint.