
Security News
CISA Kills Off RSS Feeds for KEVs and Cyber Alerts
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
metrics-client
Advanced tools
Metrics Client to send metrics to Telegraf via different protocols with configuratable bufferring feature
Metrics Client to send metrics to Telegraf via different protocols with configurable buffering feature
Install with
npm install metrics-client --save
To get started, initialize a new instance with protocol.
const MetricsClient = require('metrics-client')
var client = new MetricsClient({
handler: 'telegrafHttpHandler',
host: 'localhost',
port: 8186,
database: 'test',
maxBufferSize: 0
})
To send message(s)
client.send(message)
We accept one message or a list of messages, which needs to have a format of
{
measure: 'measure-name',
fields: { field1: 123, field2: 'someOtherValse' },
tags: { tag1: 'tag1', tag2: 'tag2'}
}
To close the client
client.close()
We only have 2 handler implementations: telegrafHttpHandler and telegrafUdpHandler. User can provide the implementation of its own handler implementation.
var handler = function(options) {
return (messages) => {
// implementation here
}
}
FAQs
Metrics Client to send metrics to Telegraf via different protocols with configuratable bufferring feature
We found that metrics-client 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
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.