Archimedes
A lightweight wrapper for StatsD and its configuration.
Installation
Add this line to your application's Gemfile:
gem 'archimedes'
And then execute:
$ bundle
Or install it yourself as:
$ gem install archimedes
Usage
Archimedes uses Isomer for managing it's configuration.
Example archimedes.yml
development:
port: 1234
namespace: 'foo.bar'
host: 'example.org'
Configure Archimedes
file = Rails.root.join('config', 'archimedes.yml')
base = Rails.env
config = Archimedes::Config.from(:yaml, file: file, base: base)
ARCHIMEDES = Archimedes.new(config)
Send some metrics
ARCHIMEDES.increment('foo')
ARCHIMEDES.decrement('foo')
ARCHIMEDES.count('foo', 30)
ARCHIMEDES.gauge('production.deployments', 1)
ARCHIMEDES.timing('foo', 300)
ARCHIMEDES.time('foo') do
zomg_long_task
end
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request