Codevoid.Utilities.Mixpanel
1.2.0
See the version list below for details.
dotnet add package Codevoid.Utilities.Mixpanel --version 1.2.0
NuGet\Install-Package Codevoid.Utilities.Mixpanel -Version 1.2.0
<PackageReference Include="Codevoid.Utilities.Mixpanel" Version="1.2.0" />
paket add Codevoid.Utilities.Mixpanel --version 1.2.0
#r "nuget: Codevoid.Utilities.Mixpanel, 1.2.0"
// Install Codevoid.Utilities.Mixpanel as a Cake Addin #addin nuget:?package=Codevoid.Utilities.Mixpanel&version=1.2.0 // Install Codevoid.Utilities.Mixpanel as a Cake Tool #tool nuget:?package=Codevoid.Utilities.Mixpanel&version=1.2.0
MixpanelCppCX
Introduction
MixpanelCppCX is a client for the Mixpanel analytics service. It has been built to handle the common situations of uploading events to the service. It supports batching, persisting-to-storage-before-uploading, and super properties. It's intended to be consumed by any UWP app — but the original motivation was to support JavaScript applications.
How to get it
MixpanelCppCX is published as a NuGET package
(Codevoid.Utilities.Mixpanel
)
to the NuGET.org feed — just add it to your UWP Project in Visual Studio, and
it'll be available for use in your code.
Things to note
- Items awaiting to upload are stored in a folder in your applications private
data folder with in local settings. (
%LOCALAPPDATA%\Packages\<PackageIdentity>\LocalState\MixpanelUploadQueue
) - Items awaiting upload are written to disk after 500ms of idle time, or when there are 10 or more items in the queue — whichever comes first.
- Items are uploaded in batches of 50, unless one item in the batch fails, then they're uploaded 1 at a time.
- The queue is paused automatically when being suspended, and resumed when... resumed.
- This library does automatic session tracking — it starts tracking the session duration on start, and will automatically end/resume the session based on suspend/resume events.
Usage
Sending a simple event
- Create an instance of
Codevoid.Utilities.Mixpanel
, and hold on to it.
var mixpanelClient = new Codevoid.Utilities.Mixpanel(<Mixpanel API Token>)
- Call, and wait for,
.InitializeAsync()
- Call
.Start()
on that instance to start processing the queue. - Call
.Track("MyEvent", null)
to log a single event
If you need to send properties with your event you can use Windows.Foundation.Collections.PropertySet
,
and insert your properties as needed, passing it as the second parameter to
Track
:
var properties = new Windows.Foundation.Colllections.PropertySet();
properties.add("MyProperty", "MyValue");
properties.add("MyOtherProperty", 9);
mixpanelClient.Track("MyOtherEvent", properties);
For full documentation see here
Product | Versions Compatible and additional computed target framework versions. |
---|---|
native | native is compatible. |
Universal Windows Platform | uap was computed. uap10.0 is compatible. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Supports automatic session tracking (see README.md for details)