Ruby Zeus Client 
![]()
Ruby client for Cisco Zeus. This allows us to send and recieve data to and from Zeus.
Installation
Add this line to your application's Gemfile:
gem 'zeusclient'
And then execute:
$ bundle
Or install it yourself as:
$ gem install zeusclient
Usage
require 'zeus/api_client'
zeus_client = Zeus::APIClient.new({
:access_token => "your_token_here"
})
List All Metrics
result = zeus_client.list_metrics()
p result.code # 200
p result.success? # true
p result.data # => {}
Get Metric
result = zeus_client.get_metrics()
p result.code # 200
p result.success? # true
p result.data # => {}
Push Metric
result = zeus_client.send_metrics([{point: {value: 1, ...}}, ...])
p result.code # 200
p result.success? # true
p result.data # => {}
Delete metric
result = zeus_client.delete_metrics()
p result.code # 200
p result.success? # true
p result.data # => {}
Get logs
result = zeus_client.get_logs("log_name_here")
p result.code # 200
p result.success? # true
p result.data # => {}
Push logs
result = zeus_client.send_logs([{},{}, ...])
p result.code # 200
p result.success? # true
p result.data # => {}
Development
After checking out the repo, run bin/setup to install dependencies. Then, run bin/console for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release to create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.
Contributing
- Fork it ( https://github.com/CiscoZeus/zeusclient/fork )
- 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 a new Pull Request