librato/librato-rack-source_prefix

Name: librato-rack-source_prefix

Owner: Librato

Description: Automatic source prefixing for measurements logged through librato-rack

Created: 2015-12-07 16:29:59.0

Updated: 2016-03-13 03:52:03.0

Pushed: 2016-04-06 16:48:52.0

Homepage:

Size: 14

Language: Ruby

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

librato-rack-source_prefix

Gem Version Build Status

This gem enables the automatic prefixing of metric source names.

By default, when you submit a metric with a custom source, that source will be passed as-is to the Librato API. For example:

ato.increment :foo, source: "my.source"

The code above would result in the following data being POSTed to the Librato API:


auges": [ 
{
  "name": "foo",
  "value": 1, 
  "source": "my.source"
}


Note that the source passed to the API is identical to the value specified in the increment call. Even if you had configured a global source value (either via the LIBRATO_SOURCE environment variable or the librato.yml configuration file) the global source value is ignored completely.

If you were to configure a global source value of myapp and install the librato-rack-source_prefix gem, the same code shown above would result in the following data being POSTed:


auges": [ 
{
  "name": "foo",
  "value": 1, 
  "source": "myapp.my.source"
}


In this case, the source value specified as part of the increment call is automatically prefixed with the global source myapp.

To override this behavior and preserve the source name, use the apply_prefix option:

ato.increment :foo, source: "my.source", apply_prefix: false
Installation

Add this line to your application's Gemfile:

'librato-rack-source_prefix'

And then execute:

$ bundle

Or install it yourself as:

$ gem install librato-rack-source_prefix

If you are using the librato-rails gem, add this line to your librato.yml:

source_prefix: one.prefix.to.rule.them.all
Rack Applications

If your application is using a non-Rails, Rack framework you'll need to add the following line to your app in order to enable the source prefixing behavior:

brato::Collector.include(Librato::Rack::SourcePrefix::Extensions::Collector)

You'll want to add this line wherever you've configured your Librato::Rack middleware.

Rails

If you are using Rails, source prefixing will be enabled automatically as a result of adding the librato-rack-source_prefix gem to your Gemfile. No additional configuration is required.

Copyright

Copyright (c) 2015 Librato Inc. See LICENSE for details.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.