This project is not maintained anymore. If you want to take over contact us at tech@cargomedia.ch.
Agent to collect server metrics and send them to the CopperEgg RevealMetrics platform. Plugins for different metrics available.
gem install bipbip
docker run cargomedia/bipbip
Containerized bipbip runs on default with /opt/bipbip/etc/config,yml
. Replace it by mounting or copying custom one.
There's a puppet module for Debian available to install bipbip as a system daemon.
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:
STDOUT
.INFO
.60
.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:
frequency
: Override the global measurement frequency.tags
: Additional tags for this specific service.metric_group
: Use a metric group name different from the plugin's name. Useful when using the same plugin twice.Currently bipbip has only one storage available, but more could be added.
Send metrics to CopperEgg's custom metrics API (RevealMetrics).
Configuration options:
These service plugins ship with bipbip:
Please refer to /docu/services.md for information about the individual plugins and their configuration options.
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.
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
lib/bipbip/version.rb
, get it merged to master.cargomedia/bipbip
docker image bundle exec rake release