Socket
Socket
Sign inDemoInstall

metrics-client

Package Overview
Dependencies
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

metrics-client

Metrics Client to send metrics to Telegraf via different protocols with configuratable bufferring feature


Version published
Maintainers
2
Created
Source

metrics-client-node

Build StatusCoverage StatusStandard - JavaScript Style Guide

Metrics Client to send metrics to Telegraf via different protocols with configurable buffering feature

Install

Install with

npm install metrics-client --save

Usage

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()

Limitation

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

Package last updated on 17 Oct 2017

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc