
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
@log4js-node/logstash-http
Advanced tools
The logstash appenders for log4js send NDJSON formatted log events to logstash receivers. This appender uses HTTP to send the events (there is another logstash appender that uses UDP).
npm install log4js @log4js-node/logstash-http
type - @log4js-node/logstash-httpurl - string - logFaces receiver servlet URLapplication - string (optional) - used to identify your application's logslogChannel - string (optional) - also used to identify your application's logs [but in a more specific way]logType - string (optional) - used for the type field in the logstash datatimeout - integer (optional, defaults to 5000ms) - the timeout for the HTTP request.This appender will also pick up Logger context values from the events, and add them as p_ values in the logFaces event. See the example below for more details.
log4js.configure({
appenders: {
logstash: { type: '@log4js-node/logstash-http', url: 'http://localhost:9200/_bulk', application: 'logstash-log4js', logType: 'application', logChannel: 'node' }
},
categories: {
default: { appenders: [ 'logstash' ], level: 'info' }
}
});
const logger = log4js.getLogger();
logger.addContext('requestId', '123');
logger.info('some interesting log message');
logger.error('something has gone wrong');
This example will result in two log events being sent to your localhost:9200. Both events will have a context.requestId property with a value of 123.
FAQs
Logstash HTTP Appender for log4js-node
The npm package @log4js-node/logstash-http receives a total of 2,834 weekly downloads. As such, @log4js-node/logstash-http popularity was classified as popular.
We found that @log4js-node/logstash-http 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.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.