You can use NRQL to query the application data collected by , , and mobile monitoring. You can then use this data to answer a variety of questions. Here are some basic examples.
Unique users
How many unique user sessions did you have in the last week?
SELECT uniqueCount(session) FROM PageView SINCE 1 week ago
Unique user trends
Were your unique user sessions up or down last week compared to the week before?
SELECT uniqueCount(session) FROM PageView SINCE 1 week ago COMPARE WITH 1 week ago
Pageview trends
How can I graph the number of unique users yesterday compared to the day before?
SELECT count(*) FROM PageView SINCE 1 day ago COMPARE WITH 1 day ago TIMESERIES AUTO
OS version
How many of your mobile users are on the latest OS version?
Key account Apdex
What is the Apdex score for a particularly important customer? If you have defined some custom attributes, you can query to monitor how this customer experiences your app from a performance standpoint: