![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
winston-logstash-udp
Advanced tools
A Logstash UDP transport for winston.
Based on a gist by mbrevoort and inspired by winston-logstash.
Recommended method:
var winston = require('winston'),
LogstashUDP = require('winston-logstash-udp').LogstashUDP;
var logger = new(winston.Logger)({
transports: [
new(LogstashUDP)({
port: 9999,
appName: 'my application name',
host: '127.0.0.1'
})
]
});
Alternate method:
var winston = require('winston');
//
// Requiring `winston-logstash-udp` will expose
// `winston.transports.LogstashUDP`
//
require('winston-logstash-udp');
winston.add(winston.transports.LogstashUDP, {
port: 9999,
appName: 'my application name',
host: '127.0.0.1'
});
input {
# Sample input over UDP
udp { format => "json" port => 9999 type => "sample" }
}
output {
stdout { debug => true debug_format => "json"}
}
npm test
I get an error when installing node packages "ERR! Error: No compatible version found: assertion-error@'^1.0.1'"
If you are running a version of NodeJS less than or equal to 0.8, upgrading NPM to a version greater than or equal to 1.4.6 should solve this issue.
npm install -g npm@~1.4.6
Another way around is to simply avoid installing the development dependencies:
npm install --production
====================
See LICENSE for the full license text.
FAQs
A Logstash UDP transport for winston
The npm package winston-logstash-udp receives a total of 327 weekly downloads. As such, winston-logstash-udp popularity was classified as not popular.
We found that winston-logstash-udp 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.