Skip to content

Collaborne/node-rdkafka-prometheus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-rdkafka-prometheus Build Status

Helper for exposing node-rdkafka statistics through prometheus

Unmaintained!

We are no longer using node-rdkafka, and are therefore not planning to add any features to this. We will still try to merge PRs to the best of our ability, of course.

Usage

const RdkafkaStats = require('node-rdkafka-prometheus');
const prometheus = require('prom-client');

// When setting up a consumer or producer:
const stream = rdkafka.KafkaConsumer.createReadStream({'statistics.interval.ms': 1000});
stream.consumer.on('event.stats', msg => {
  const stats = JSON.parse(msg.message);
  this.metrics.RDKAFKA_STATS.observe(stats);
});

License

This software is licensed under the Apache 2 license, quoted below.

    Copyright 2011-2020 Collaborne B.V. <http://github.com/Collaborne/>

    Licensed under the Apache License, Version 2.0 (the "License"); you may not
    use this file except in compliance with the License. You may obtain a copy of
    the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
    License for the specific language governing permissions and limitations under
    the License.