cargomedia / bipbip

UNMAINTAINED. Gather services data and store in CopperEgg/IDERA
MIT License
4 stars 7 forks source link

UNMAINTAINED

This project is not maintained anymore. If you want to take over contact us at tech@cargomedia.ch.

bipbip

Agent to collect server metrics and send them to the CopperEgg RevealMetrics platform. Plugins for different metrics available.

Build Status Gem Version

Installation

Gem

gem install bipbip

Docker

docker run cargomedia/bipbip

Containerized bipbip runs on default with /opt/bipbip/etc/config,yml. Replace it by mounting or copying custom one.

Puppet

There's a puppet module for Debian available to install bipbip as a system daemon.

Configuration

Pass the path to your configuration file to bipbip using the -c command line argument.

bipbip -c /etc/bipbip/config.yml

Example with CopperEgg as a storage and service plugins for memcached and mysql configured:

logfile: /var/log/bipbip.log
loglevel: INFO
frequency: 15
tags: ['foo', 'bar']
include: services.d/

storages:
  -
    name: copperegg
    api_key: <YOUR_APIKEY>

services:
  -
    plugin: memcached
    hostname: localhost
    port: 11211
  -
    plugin: mysql
    hostname: localhost
    port: 3306

Configuration options:

The include directive allows to set a directory from which to load additional service plugin configurations. The above example could also be structured with multiple files:

.
|-- config.yml
`-- services.d
    |-- memcached.yml
    `-- mysql.yml

Where memcached.yml would contain:

plugin: memcached
hostname: localhost
port: 11211

The configuration for each service plugin is described further down. The following options are available for all plugins:

Storages

Currently bipbip has only one storage available, but more could be added.

copperegg

Send metrics to CopperEgg's custom metrics API (RevealMetrics).

Configuration options:

Service Plugins

These service plugins ship with bipbip:

Please refer to /docu/services.md for information about the individual plugins and their configuration options.

Custom Service Plugins

Additional service plugins can be created as independent gems. They should include a class Plugin::MyPlugin in the BipBip module extending Plugin. On that class the functions metrics_schema and monitor should be implemented.

For a complete example see cargomedia/bipbip-random-example.

Development

Currently specs depends on live services (mysql, memcache, redis)

docker-compose build bipbip
docker-compose run --volume $(pwd):/opt/bipbip bipbip bash
bundle install
scripts/test.sh

Release new version

  1. Bump the version in lib/bipbip/version.rb, get it merged to master.
  2. Travis will push new cargomedia/bipbip docker image
  3. Release gem using bundle exec rake release