Skip to content

Commit 3461073

Browse files
committed
Merge branch 'master' into portals-2057280
2 parents a7b1dac + 65cd647 commit 3461073

File tree

53 files changed

+1199
-23
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+1199
-23
lines changed

powerapps-docs/developer/common-data-service/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,8 @@
343343
href: isv-app-management-appsource-checker.md
344344
- name: Connector Certification
345345
href: isv-app-management-certification.md
346+
- name: App usage analytics
347+
href: isv-app-usage-analytics.md
346348
- name: Create client applications
347349
href: connect-cds.md
348350
items:
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
---
2+
title: Introduction to the Power Platform ISV Studio app usage analytics| Microsoft Docs
3+
description: Measure app's performance and get insights.
4+
services: ''
5+
suite: powerapps
6+
documentationcenter: na
7+
author: "nkrb" # GitHub ID
8+
manager: kvivek
9+
editor: ''
10+
tags: ''
11+
ms.service: powerapps
12+
ms.devlang: na
13+
ms.topic: article
14+
ms.reviewer: nabuthuk
15+
ms.workload: na
16+
ms.date: 10/02/2020
17+
ms.author: nabuthuk
18+
search.audienceType:
19+
- developer
20+
search.app:
21+
- PowerApps
22+
- D365CE
23+
---
24+
25+
# ISV app usage analytics
26+
27+
[!INCLUDE [cc-beta-prerelease-disclaimer](../../includes/cc-beta-prerelease-disclaimer.md)]
28+
29+
ISVs need data like active users, number of times the solution installed or other means of data to measure the success of their application. App usage analytics feature allows ISVs to monitor the usage of their apps by giving them the visibility into monthly, daily, and weekly usage data of their apps.
30+
31+
> [!NOTE]
32+
> A tenant or customer needs to update their apps for an ISV to start seeing the usage data.
33+
34+
App usage feature allows ISVs to filter the usage data by **Component Type**, **Data Date**, **Package Name**, and **Solution Name**. An app can have multiple packages and an individual package can have multiple solutions. Each solution can have multiple components. App usage is measured based on how many times the components of the application are used in a month, week, or day.
35+
36+
> [!NOTE]
37+
> An app must be deployed via [AppSource](https://appsource.microsoft.com) in order to see this data.
38+
39+
> [!div class="mx-imgBorder"]
40+
> ![Usage dashboard](media/isv-app-usage-analytics-report.png "Usage dashboard")
41+
42+
43+
Some of the components of a solution can have shared ownership by multiple ISVs. For shared components, only the publisher who created the component gets the usage credit. For example, ISV1 created a form and ISV2 extends the form by adding a widget to it. Every time the form is used, ISV1 gets the usage credit and ISV2 gets the usage credit whenever the widget is used. If a user visited the form only to access the widget, ISV1 also gets the usage credit.
44+
45+
For components that are not shared, only the publisher who created gets the usage credit.
46+
47+
## View the app usage dashboard
48+
49+
To view the app usage data:
50+
51+
1. Sign in to [ISV studio](https://aka.ms/ISVStudio/).
52+
1. On the **Home** page, you can see a list of published applications. Select the desired application for which you want to see the usage details.
53+
1. Scroll-down to the page to view all the apps. Select the app and select the **Usage** tab.
54+
55+
> [!div class="mx-imgBorder"]
56+
> ![List of top apps](media/isv-top-apps.png "List of top apps")
57+
58+
1. You can also see the app usage details by directly selecting the app usage icon from the list of apps as shown screenshot:
59+
60+
> [!div class="mx-imgBorder"]
61+
> ![Usage icon](media/isv-select-app-to-see-details.png "Usage icon")
62+
63+
## Overview of the usage dashboard
64+
65+
The usage dashboard shows the following metrics:
66+
67+
- **Monthly active users**: Tracks the information about the number of unique users who used the app within the last month.
68+
- **Daily active users**: Tracks the information about the number of daily unique users who used the app within the last 24 hours.
69+
- **Weekly active users**: Tracks the information about the number of daily unique users who used the app within the last 7 hours.
70+
- **Usage over time**: Tracks the information about the number of monthly, weekly, and daily active users over time.
71+
- **Monthly active users by component type**: Tracks the information about the number of monthly active users filtered by component type.
72+
- **Monthly active users by component name**: Tracks the information about the number of monthly active users filtered by component name.
73+
74+
If ISV is looking at the metrics at a solution level, all the components are rolled up to the solution level. Similarly, all the solution metrics are rolled up to package and all package metrics are rolled up to an app.
75+
76+
### Filtering the usage dashboard
77+
78+
ISVs can filter the usage dashboard using the filters available. For example, an ISV can filter to see the metrics at app, package, solution, and component level. If ISVs want to see the metrics at solution level, ISVs can select all the components of the solution in the filter.
79+
80+
### See also
81+
82+
[Home page](isv-app-management-homepage.md)
83+
[App page](isv-app-management-apppage.md)<br/>
84+
[Tenant page](isv-app-management-tenantpage.md)<br/>
85+
[AppSource checker](isv-app-management-appsource-checker.md)<br/>
86+
[Connector Certification](isv-app-management-certification.md)
Loading
Loading
Loading
Loading
Loading

powerapps-docs/developer/common-data-service/webapi/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@
3232
href: query-data-web-api.md
3333
- name: Retrieve related entities with query
3434
href: retrieve-related-entities-query.md
35+
- name: Relevance search, suggestions, and autocomplete
36+
href: relevance-search.md
3537
- name: Retrieve and execute predefined queries
3638
href: retrieve-and-execute-predefined-queries.md
3739
- name: Create an entity

powerapps-docs/developer/common-data-service/webapi/query-data-web-api.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -873,6 +873,7 @@ More information: [Use column comparison in queries](../column-comparison.md)
873873

874874
### See also
875875

876+
[Search across entity data using relevance search](relevance-search.md)
876877
[Work with Quick Find’s search item limit](../quick-find-limit.md)
877878
[Web API Query Data Sample (C#)](samples/cdswebapiservice-query-data.md)<br />
878879
[Web API Query Data Sample (Client-side JavaScript)](samples/query-data-client-side-javascript.md)<br />

0 commit comments

Comments
 (0)