Analytics API overview

📘

Analytics =/= Recommendation

Our aggregation engine is independent of our recommendation engine. There can be downtime or data loss on the aggregation engine. However, this will not mean that our recommendation system is down.

LiftIgniter logs every impression of your service, and you might want to make queries to get aggregated data. There are mainly 2 things that analytics API can do for you.

1. Online Querying with /item endpoint

If you want specific stats for an item, then you can provide the date range and ID of the item to get how many times it was shown through LiftIgniter and how many times it got clicked. The data can be sliced based on arbitrary label you put into the data being sent over to us.

This query is handled in realtime, and we'll keep last 4 weeks worth of data in our aggregation engine. So if you wish to store the results long-term then you should reference the second feature or store the results for yourself.

2. Retrieving results of scheduled query with /topn endpoint

📘

In development

POSTing custom queries are under development.

Using this endpoint, you can build custom queries that you would like to run on the events you've sent us. You can schedule queries that store up to Top N items (whether it be page URL, or your internal service name), in which N could go up to as high as 50,000. If you set custom queries then the query will run every hour and be stored on our side so you can retrieve the data whenever you want. Unlike the first feature, the results here will be stored for indefinite amount of time.

Reading documentations on the Metrics can be helpful when designing your own queries.