The project is in a healthy, maintained state
Official Ubersicht SDK. Simplifies integration with Ubersicht API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 0.1
~> 2.0
 Project Readme

Ubersicht API library for Ruby

This is the officially supported Ruby library for using Ubersicht's APIs.

Installation

Add this line to your application's Gemfile:

gem 'ubersicht-ruby-sdk', '0.2.0', require: 'ubersicht'

The latest main branch:

gem 'ubersicht-ruby-sdk', git: 'https://github.com/starfish-codes/ubersicht-ruby-sdk.git',
                          branch: 'main', require: 'ubersicht'

And then execute:

$ bundle

Or install it yourself as:

$ gem install ubersicht-ruby-sdk

Usage

Ingestion

Build client:

  client = Ubersicht::Ingestion::Client.new(
    token: '<ubersicht-plugin-token>',
    url: '<api-base-url>',
    debug: true
  )

Parameters:

  • token - (required) authentication token for Ubersicth plugin.
  • url - (required) Ubersicht API root url. Different for production and testing environment.
  • debug - (optional) default=false. If true then request is performed in the current thread, if false then new thread is created.

Send event:

  source = 'dauth'
  type = 'DeviceBinding'

  payload = {
    event_code: 'REQUESTED',
    event_date: 2021-10-10 10:10:10,
    event_group_id: 'eb2bc8bb-f584-4801-b98c-361a0c2d38f8',
    event_id: 'ed62d0c1-f2a5-41b7-ab58-24c033eec508'
  }
  client.ingest(source, type, payload)

Event attributes:

  • source (required) - a source of events, e.g. adyen, dauth
  • type (required) - a process or resource to which event belongs, e.g. DeviceBinding, Authentication
  • event_code - string identifier of a transition
  • event_date - time when event was triggered
  • event_group_id - correlated transaction id (allows to link some events together)
  • event_id - unique event identifier (allows to silence duplicated events)

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also 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, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/ubersicht-ruby-sdk.

License

The gem is available as open source under the terms of the MIT License.