Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
A minimalistic node.js client for statsd server. Fork of original work by sivy
lynx
features:
lynx
connection$ npm install lynx
$ node
> var lynx = require('lynx');
> var metrics = new lynx('localhost', 8125);
{ host: 'localhost', port: 8125 }
> metrics.increment('node_test.int');
> metrics.decrement('node_test.int');
> metrics.timing('node_test.some_service.task.time', 500); // time in ms
> metrics.gauge('gauge.one', 100);
> metrics.set('set.one', 10);
This is the equivalent to:
echo "node_test.int:1|c" | nc -w 0 -u localhost 8125
echo "node_test.int:-1|c" | nc -w 0 -u localhost 8125
echo "node_test.some_service.task.time:500|ms" | nc -w 0 -u localhost 8125
echo "gauge.one:100|g" | nc -w 0 -u localhost 8125
echo "set.one:10|s" | nc -w 0 -u localhost 8125
The protocol is super simple, so feel free to check out the source code to understand how everything works.
You can stream to lynx
:
fs.createReadStream('file.statsd')
.pipe(new lynx('localhost', port))
.pipe(fs.createReadStream('file-fixed.statsd'))
;
Feel free to check the stream-test
for more info.
If you wish to measure timing you can use the timer()
functionality.
var metrics = new lynx('localhost', 8125)
, timer = metrics.createTimer('some.interval')
;
//
// Should send something like "some.interval:100|ms"
//
setTimeout(function () {
timer.stop();
}, 100);
Timers use Date.getTime()
which is known for being imprecise at the ms level. If this is a problem to you please submit a pull request and I'll take it.
Batching is possible for increment
, decrement
, and count:
metrics.decrement(['uno', 'two', 'trezentos']);
If you want to mix more than one type of metrics in a single packet you can use send
, however you need to construct the values yourself. An example:
//
// This code is only to exemplify the functionality
//
// As of the current implementation the sample rate is processed per group
// of stats and not per individual stat, meaning either all would be send
// or none would be sent.
//
metrics.send(
{ "foo" : "-1|c" // count
, "bar" : "15|g" // gauge
, "baz" : "500|ms" // timing
, "boaz": "40|s" // set
}, 0.1); // sample rate at `0.1`
You can close your open socket when you no longer need it by using metrics.close()
.
By default errors
get logged. If you wish to change this behavior simply specify a on_error
function when instantiating the lynx
client.
function on_error(err) {
console.log(err.message);
}
var connection = new lynx('localhost', 1234, {on_error: on_error});
Source code is super minimal, if you want try to get familiar with when errors occur check it out. If you would like to change behavior on how this is handled send a pull request justifying why and including the alterations you would like to propose.
Run the tests with npm
.
npm test
`\. ,/'
|\\____//|
)/_ `' _\(
,'/-`__'-\`\
/. (_><_) ,\
` )/`--'\(`' atc
` '
git clone git://github.com/dscape/lynx.git
(oo)--',-
in caos
FAQs
Minimalistic StatsD client for Node.js programs
The npm package lynx receives a total of 19,354 weekly downloads. As such, lynx popularity was classified as popular.
We found that lynx 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.