Mxpanel
Client for Mixpanel Ingestion API.
It provides a sync API that makes HTTP request to the Mixpanel API. And also a async API that buffers and delivers the buffered events to Mixpanel in background.
Checkout the documentation for more information.
Installation
The package can be installed by adding mxpanel to your list of dependencies in mix.exs:
def deps do
[
{:mxpanel, "~> 0.1.0"},
{:jason, "~> 1.2"},
{:finch, "~> 0.5"}
]
end
Usage
Track event
- Add to your supervision tree:
{Finch, name: Mxpanel.HTTPClient}
- Call
track/2:
client = %Mxpanel.Client{token: "mixpanel project token"}
event = Mxpanel.Event.new("signup", "123")
Mxpanel.track(client, event)
Enqueue an event
- Add to your supervision tree:
{Finch, name: Mxpanel.HTTPClient},
{Mxpanel.Batcher, name: MyApp.Batcher, token: "mixpanel project token"}
- Call
track_later/2:
event = Mxpanel.Event.new("signup", "123")
Mxpanel.track_later(MyApp.MxpanelBatcher, event)
- The event will be buffered, and later sent in batch to the Mixpanel API.
Telemetry
Mxpanel currently exposes following Telemetry events:
[:mxpanel, :batcher, :buffers_info]- Dispatched periodically by each running batcher exposing the size of each running buffer in the pool.- Measurement:
%{} - Metadata:
%{batcher_name: atom(), buffer_sizes: [integer()]}
- Measurement:
Changelog
See the changelog.
Contributing
See the contributing file.
License
Copyright 2021 (c) Thiago Santos.
Mxpanel source code is released under Apache 2 License.
Check LICENSE file for more information.