Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
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,988 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.