confluentinc / confluentinc/kafka-tutorials

Analyze mobile app usage

Open
#1,186 0 comments 0 reactions 1 assignee Claimed by @krisajenkins View on GitHub
recipe use case
Dominant language
Java
Stars
39
Forks
91
PR merge metrics
No merged PRs in 30d

Description

Consider a mobile app that sends custom event telemetry. You can

- Count how many distinct users have sent each custom event from your app in the last 24 hours, sorted by these distinct counts
- Analyze conversion, retention, and navigation patterns in your app

One example (this code sample is not ksql-ready, it needs to be adapted):

```
customEvents
| where timestamp >= ago(24h)
| summarize dcount(user_Id) by name
| order by dcount_user_Id desc
```

Inspiration: https://docs.microsoft.com/en-us/azure/azure-monitor/app/mobile-center-quickstart

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.