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.
influxdbudp
Advanced tools
#Influxdb UDP Connector This lib follows line protocol.
#Usage
npm install influxdbudp
var send=require("influxdbudp");
var udpSocket=send({
host:host,
port:4444,
tags:"cpu,unit=unit1",
values:"value=60,severity=\"low\""
});
This will send following text to Influxdb UDP through line protocol:
cpu,unit=unit1 value=60,severity="low"\n
#Params
{
tags:String // e.g. "cpu" / "cpu,project=myProject,unit=unit1"
values: String // e.g. 'value=100,isServer=fales,note="server not available"'
timestamp: String // optional epoch nanoseconds / microseconds / miliseconds .e.g. "123456789s"
host: String // ipaddress or hostname where Influxdb is
port: Number // udp port of influxdb,
cached: boolean // optional cache the socket. default false;
close: boolean // close the socket after sending the message. default true;
}
#Test
npm test
FAQs
Influxdb UDP connector following line protocol supported by influx 0.9+
The npm package influxdbudp receives a total of 46 weekly downloads. As such, influxdbudp popularity was classified as not popular.
We found that influxdbudp 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.