
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
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.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 receives a total of 2,195 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.