Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Build Your Own Mint | 2,385 | 6 months ago | 12 | mit | HTML | |||||
Build your own personal finance analytics using Plaid, Google Sheets and CircleCI. | ||||||||||
Universal Analytics | 927 | 14,741 | 243 | a year ago | 44 | December 14, 2021 | 43 | JavaScript | ||
A node module for Google's Universal Analytics and Measurement Protocol | ||||||||||
Google Measurement Protocol | 93 | 3 years ago | 13 | bsd-2-clause | Python | |||||
A Python implementation of Google Analytics Measurement Protocol | ||||||||||
Laravel Spanner | 77 | 3 days ago | 30 | August 23, 2022 | 1 | apache-2.0 | PHP | |||
Laravel database driver for Google Cloud Spanner | ||||||||||
Dialogflow Transactions Nodejs | 69 | a year ago | 2 | apache-2.0 | JavaScript | |||||
Physical transactions sample (using Dialogflow) in Node.js | ||||||||||
Go Sql Driver Spanner | 66 | 3 | 3 years ago | 6 | May 07, 2020 | apache-2.0 | Go | |||
Google Cloud Spanner driver for Go | ||||||||||
Hackerwallet | 45 | 7 years ago | CoffeeScript | |||||||
Personal finance management for Node.js hackers and Google Docs users | ||||||||||
Slmgoogleanalytics | 42 | 6 | 1 | 5 years ago | 9 | December 15, 2014 | 5 | other | PHP | |
A ZF2 module to track pages, events and ecommerce transactions with Google Analytics | ||||||||||
Firestore Clj | 35 | 7 months ago | 17 | May 18, 2020 | 3 | mit | Clojure | |||
An unofficial Firestore API for Clojure. Provides tools for doing single pulls and writes, streaming real-time data, batched writes and transactions. | ||||||||||
Go Firestorm | 26 | 1 | a year ago | 3 | July 09, 2020 | mit | Go | |||
Simple Go ORM for Google/Firebase Cloud Firestore |
Google Analytics tracker for Apple tvOS provides an easy integration of Google Analytics’ measurement protocol for Apple TV. This library enables sending screenviews, events, exceptions and any other hit type to Google Analytics. Implementation of the library and sending an initial hit to Google Analytics takes only a few minutes.
All code for this tracker is located inside the files “GATracker.h” and “GATracker.m”. The first step of the implementation is associating this library file with your application project.
This library creates an object (a tracker) that holds persistent values such as client id, property id, and more. The tracker is created with the following command:
[GATracker setupWithTrackingID:UA-1234567-89"];
This code should run in the AppDelegate method applicationDidFinishLaunchingWithOptions.
Once the tracker is set up you can start sending Google Analytics hits from your Apple TV application.
When sending the screenview hit type, the screenname parameter is a required field.
[GATracker screenView:@"FirstScreen" customParameters:nil];
When sending the event hit type, the event category and action a required fields
[GATracker event:@"category" action:@"action" label:nil customParameters:nil];
When sending the exception hit, the exception description and exception “fatality” are both required parameters
[GATracker excpetionWithDescription:@"This test failed" isFatal:true customParameters:nil];
With each hit you are also able to send additional parameters as specified in the Measurement Protocol reference. Examples include: “non interactive hit”, “event value”, “custom dimensions”, “custom metrics” etc.
In the following example we will add custom metric values and set this event hit as non interactive. The example shows how to send a video progress hit that includes video name as custom dimension 1, video author as custom dimension 2 and sets the event as non interactive (since this event is not a result of user interaction).
[GATracker event:@"Video" action:@"Progress" label:@"50%" customParameters:@{@"cd1":@"Incredible Video", @"cd2":@"Amazing A. Uthor", @"ni":1}];
As mentioned before you are able to use any measurement protocol parameters inside the customParameters dictionary. https://developers.google.com/analytics/devguides/collection/protocol/v1/parameters?hl=en
Screenview, event and exception are not the only hit types available in Google Analytics, to send a different hit such as a transaction, item, social or timing hit use the send function.
In the following example we will send a transaction hit with transaction id 10001 and transaction revenue of $425,00.
[GATracker send:@"transaction" andParams:@{@"tid" : @"10001", @"tr" : @"425.00", @"cu" : @"USD"}];
For additional information email [email protected] or visit our website http://www.analyticspros.com
When running the sample app make sure ot update the property id in the app delegate.
[GATracker setupWithTrackingID:"Your Property ID"];