Ruby Integration
This is an optional library you can install if you're working with Ruby. This is an optional library you can install if you're working with Ruby.
This page of the Docs refers specifically to the Official PostHog Ruby Library to capture and send events to any PostHog instance (including posthog.com).
This library uses an internal queue to make calls fast and non-blocking. It also batches requests and flushes asynchronously, making it perfect to use in any part of your web app or other server-side application that needs performance.
Installation
Add this to your Gemfile
:
gem "posthog-ruby"
In your app, set your api key before making any calls.
posthog = PostHog::Client.new({api_key: "<ph_project_api_key>",api_host: "<ph_instance_address>", # You can remove this line if you're using app.posthog.comon_error: Proc.new { |status, msg| print msg }})
You can find your key in the 'Project Settings' page in PostHog.
Making Calls
Capture
Capture allows you to capture anything a user does within your system, which you can later use in PostHog to find patterns in usage, work out which features to improve or where people are giving up.
A capture
call requires:
distinct id
which uniquely identifies your userevent name
to specify the event
- We recommend naming events with "[noun][verb]", such as
movie played
ormovie updated
, in order to easily identify what your events mean later on (we know this from experience).
Optionally you can submit:
properties
, which is a dictionary with any information you'd like to addtimestamp
, a datetime object for when the event happened. If this isn't submitted, it'll be set to the current time
For example:
posthog.capture({distinct_id: 'distinct id',event: 'movie played',properties: {movie_id: '123',category: 'romcom'}})
Identify
Identify lets you add metadata to your users so you can easily identify who they are in PostHog, as well as do things like segment users by these properties.
An identify
call requires:
distinct id
which uniquely identifies your userproperties
with a dict with any key:value pairs
For example:
posthog.identify({distinct_id: "user:123",properties: {email: 'john@doe.com',pro_user: false}})
The most obvious place to make this call is whenever a user signs up, or when they update their information.
Alias
To connect whatever a user does before they sign up or log in with what they do after you need to make an alias call. This will allow you to answer questions like "Which marketing channels leads to users churning after a month?" or "What do users do on our website before signing up?"
In a purely back-end implementation, this means whenever an anonymous user does something, you'll want to send a session ID with the capture call. Then, when that users signs up, you want to do an alias call with the session ID and the newly created user ID.
The same concept applies for when a user logs in.
If you're using PostHog in the front-end and back-end, doing the identify
call in the frontend will be enough.
An alias
call requires:
previous distinct id
: the unique ID of the user from beforehanddistinct id
: the current unique id
For example:
posthog.alias({distinct_id: "user:123",alias: "user:12345",})
Sending Page Views
If you're aiming for a full back-end implementation of PostHog, you can send pageviews from your backend
posthog.capture({distinct_id: 'distinct id',event: '$pageview',properties: {'$current_url': 'https://example.com'}})
Development
How to release
- Increase
VERSION
inposthog/version.py
- run
make release
andmake release_analytics
git commit -am "Release X.Y.Z."
(where X.Y.Z is the new version)git tag -a X.Y.Z -m "Version X.Y.Z"
(where X.Y.Z is the new version).
Thank You
This library is largely based on the analytics-ruby
package.