Sha256: 15bb1cd433cb64769534b100fd9cf1729cd7c2f0755d438126d73865d33ce571

Contents?: true

Size: 1.25 KB

Versions: 1

Compression:

Stored size: 1.25 KB

Contents

# Archimedes

[![Build Status](https://travis-ci.org/shopkeep/archimedes.png?branch=master)](https://travis-ci.org/shopkeep/archimedes)

A lightweight wrapper for StatsD and it's 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](https://github.com/pguelpa/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.time('foo') do
      zomg_long_task
    end

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
archimedes-0.0.1 README.md