Fabric.io - Answers - Filter and sum data by range?

I use Fabric answers and Crashlytics in an iOS app (Swift) to track user behavior. I am setting up a custom event so that whenever someone clicks on a tab, he logs the event.

. The problem is in the Answers user interface, it tells me the breakdown for each day, but it does not allow me to aggregate data for a date range.

If my users can click on 4 tabs and I register each with a custom event using a custom key, all I want to do is:

Show me a breakdown of each tab throughout the year or any date range (so I would like to see a tab of 1: 30 people listened, a tab of 2: 20 people listened, etc.). The answers do not seem to allow you to change / filter date ranges.

Any ideas? Maybe you all know some better app analytics tracking tool, which is good for iOS? I do not like Microsoft's App Insights.

thanks

+5
source share
1 answer

There is a way around this, with the only application changes you will need to make in the next few months.

  1. Firebase ( ).
  2. Firebase Google BigQuery.
  3. Analytics SQL.

SQL- ( ), , . , , , . - № 2:

SELECT COUNT(event_dim.name) as TabClicks,
    event_dim.params.value.string_value as TabName
FROM com.example.myapp.app_events_
WHERE event_dim.params.key = 'tabClicked'
GROUP BY TabName
ORDER BY TabName ASC
0

Source: https://habr.com/ru/post/1621634/


All Articles