Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lloesche/ruby-splunk

ruby class to access splunk
https://github.com/lloesche/ruby-splunk

Last synced: about 1 month ago
JSON representation

ruby class to access splunk

Awesome Lists containing this project

README

        

conversis-splunk
================

Small ruby lib to access the Splunk API

# Example
```ruby
splunk = Conversis::Splunk::Client.new(host: splunk_server, username: splunk_login, password: splunk_password)
search_id = splunk.search(splunk_query)
splunk.wait_for(search_id)
pp splunk.results(search_id)
```