Skip to content

Analyze mobile app usage #1186

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
ybyzek opened this issue Mar 21, 2022 · 0 comments
Open

Analyze mobile app usage #1186

ybyzek opened this issue Mar 21, 2022 · 0 comments
Assignees
Labels
recipe use case A tutorial with an extended business use case

Comments

@ybyzek
Copy link
Contributor

ybyzek commented Mar 21, 2022

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

@ybyzek ybyzek added use case A tutorial with an extended business use case new recipe recipe and removed new recipe labels Mar 21, 2022
@krisajenkins krisajenkins self-assigned this Mar 24, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
recipe use case A tutorial with an extended business use case
Projects
None yet
Development

No branches or pull requests

2 participants