(编译)使用 AppCenter 持续输出导出到 Application Insights
原文地址:https://blog.xamarin.com/appcenter-continuous-export-application-insights/
五星手机应用有一个特殊的特点:他们不会放开用户。这可以通过应用获得,了解你的应用,应用的用户以及这些用户是如何与你的应用互相影响。AppCenter 持续输出提供的深层的客户监测,提供了一个更好了解你的客户并有助于提高客户的保留率。默认情况下,你会收到有关于活动用户、活动会话、顶级设备、国家、语言等!
另外,只需要几行代码,你也可以跟踪特定事件,像用户登录或者添加到购物车但没有购买的项目。这篇文章将探讨如何从 AppCenter 分析出可以进一步应用于伟大应用。
利用持续输出
对于这种情况,我们将使用 SmartHotel360 一个持续输出应用程序来分析应用的使用情况。可以在 GitHub上找到这个应用的源代码。
第一步:在 AppCenter 中注册你的应用
在你的 GitHub 上 Fork SmartHotel360 仓库并将应用添加到 AppCenter 账号里。从应用的入门页面跟随指引并添加 AppCenter 分析到你的应用中。现在,运行你的应用,你应该看到在你的 sahboard 上看到默认或者盒子外的数据。
第二步:跟踪自定义事件
使用 TrackEvent() 跟踪应用中的自定义事件。这将为你提供有关于已使用的功能的详细信息和每个事件如何跟踪的详细信息。
当包含在你的应用中时, AppCenter 提供所有这些信息给你。为了使你的应用更加粒度化,AppCenter 也有能力发送这些数据到你的 Application Insights 中。
第三步:设置 Azure 账号并导出到 Application Insights
创建一个个人账号,然后像这样添加订阅到 Application Insights:
第四步:在 Application Insights 中分析
一旦设置了从 AppCenter 到 Application Insights 持续输出,数据将可用于分析和采取行动。就像 AppCenter 一样,Application Insights 也将在一个高等级分享你所有的应用分析。
总结:
对于未来版本将做出明智的决定使 AppCenter 的持续输出到 Application Insights。获取你的应用的数据的重要详情,比如在哪里被使用,在哪一点用户离开你的应用,以及他们运行的操作系统的版本。持续输出到 Application Insights 将有助于这一决策和现成的自定义数据点。更多关于与 AppCenter 的集成分析,请查看 AppCenter 文档。
(编译)使用 AppCenter 持续输出导出到 Application Insights的更多相关文章
- Python subprocess执行持续输出shell命令的控制
研究了大半天,为了获取持续输出的shell指令结果,并对结果进行分析,一直因为无法控制subprocess开启的子进程头疼,研究了半天,参考众多大神的博客后,终于实现,目前已时间为控制点,在实际业务中 ...
- oeasy教您玩转linux010201持续输出yes
我们来回顾一下 上一部分我们都讲了什么?
- 【Azure Application Insights】在Azure Function中启用Application Insights后,如何配置不输出某些日志到AI 的Trace中
问题描述 基于.NET Core的Function App如果配置了Application Insights之后,每有一个函数被执行,则在Application Insights中的Logs中的tra ...
- Azure Application Insights REST API使用教程
本文是Azure Application Insights REST API的简单介绍,并会包含一个通过Python消费API的示例/小工具. 新加入的team中的一项工作是制作日常的运维报表,制作方 ...
- Azure Monitor(一)Application Insights
一,引言 Azure Monitor 是 Azure 中的一项完整堆栈监视服务,是一种收集和分析遥测数据的服务.它提供了一组完整的功能来监视 Azure 资源以及其他云中和本地的资源.Azure Mo ...
- 使用Application Insights 做分析
Application Insights on Windows Desktop apps, services and worker roles : https://azure.microsoft.co ...
- 关于Application Insights遥测功能使用【遇到问题】
简介:Application Insights是微软发布的一个在线服务,可以监测自己的网站应用,进行性能管理以及使用分析. Application Insights功能一开始是出现在Visualstu ...
- [整理]Visual Studio 的Application Insights
简单介绍 Application Insights(预览版) Visual Studio 的Application Insights插件简介 Application Insights for Visu ...
- 【应用程序见解 Application Insights】在Application Insights中通过自定义查询结果定义指标并显示在Dashboard中
问题情形 通过Application Insights收集到指标数据后,如Request,Trace,Exception.但是默认的Insights图表不能满足业务的需求,需要自定义相应的类SQL语句 ...
随机推荐
- 利用caffe的solverstate断点训练
你可以从系统 /tmp 文件夹获取,名字是什么 caffe.ubuntu.username.log.INFO.....之类 ====================================== ...
- C# 中的委托和事件(详解)
C# 中的委托和事件 委托和事件在 .NET Framework 中的应用非常广泛,然而,较好地理解委托和事件对很多接触 C# 时间不长的人来说并不容易.它们就像是一道槛儿,过了这个槛的人,觉得真是太 ...
- idea中设置springboot热部署
在idea中设置springboot热部署,项目修改的时候不用手动重启应用 1,pom中添加依赖 <dependency> <groupId>org.springframewo ...
- 最大公倍数_Greatest Common Divisor
计算最大公倍数 Static int gcd( int a, int b) { int t; while( b>0) { t = b; b = a % b; a = t; } return a; ...
- Sass 基本特性-运算 感觉满满都是坑
Sass中的基本运算 一.加法 在 CSS 中能做运算的,到目前为止仅有 calc() 函数可行.但在 Sass 中,运算只是其基本特性之一. sass做加法运算是可以不考虑参数带单位,但需 ...
- 【BZOJ】1607: [Usaco2008 Dec]Patting Heads 轻拍牛头
[算法]模拟 #include<cstdio> #include<algorithm> using namespace std; ,maxm=; int a[maxn],A[m ...
- js刷新页面方法 -- (转)
1,reload 方法,该方法强迫浏览器刷新当前页面. 语法:location.reload([bForceGet]) 参数: bForceGet, 可选参数, 默认为 false,从客户端缓存里 ...
- Apache的Commons Lang和BeanUtils
1.字符串的空判断 //isEmpty System.out.println(StringUtils.isEmpty(null)); // true System.out.println(S ...
- 分布式实时日志分析解决方案ELK部署架构
一.概述 ELK 已经成为目前最流行的集中式日志解决方案,它主要是由Beats.Logstash.Elasticsearch.Kibana等组件组成,来共同完成实时日志的收集,存储,展示等一站式的解决 ...
- Java面向对象的三个特征与含义
封装 1.英文为 encapsulation,实现信息隐藏: 2.把同一类事物的特性归纳到一个类中(属性和行为),隐藏对象的内部实现: 继承 1.英文为 inheritance: 2.继承的过程,是从 ...