Last active
October 7, 2017 23:55
-
-
Save maplebed/fffbf83ea1b70d4be6d8e5e4f16aa91d to your computer and use it in GitHub Desktop.
Shortest possible libhoney use
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'libhoney' | |
honeycomb = Libhoney::Client.new(writekey: "abc123redacteddef456", dataset: 'rubytest') | |
data = {} | |
data[:test] = "Data!" | |
honeycomb.send_now(data) | |
honeycomb.close(true) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment