1.0.0 • Published 4 years ago

node-rdkafka-prometheus v1.0.0

Weekly downloads
11
License
Apache-2.0
Repository
github
Last release
4 years ago

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.
1.0.0

4 years ago

0.3.3

5 years ago

0.3.2

6 years ago

0.3.1

6 years ago

0.3.0

6 years ago

0.2.0

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago