Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 781 Bytes

File metadata and controls

26 lines (17 loc) · 781 Bytes

TempoDB Ruby API Client

The TempoDB Ruby API Client makes calls to the TempoDB API. The module is available as a gem.

gem build tempodb.gemspec
gem install tempodb-1.0.0.gem

Build Status

Quickstart

require 'tempodb'

client = TempoDB::Client.new('database_id', 'api_key', 'api_secret')
client.create_series("temp-1')
client.list_series

Usage

For more example usage, please see the TempoDB API documentation, which includes Ruby client examples for all endpoints.

There is also a generated RDoc API documentation which you can use as a reference.