美文网首页
iOS APP网络监控 - 查询指南

iOS APP网络监控 - 查询指南

作者: coder_feng | 来源:发表于2021-07-11 23:33 被阅读0次

网络监控组件所采集的信息都上报到了 support-logs 这个 project 的 yyzc-logs(正式)、yyzc-logs-test(测试)logstore,登陆阿里云日志服务到对应的 logstore,查询关注的信息。
以下提供部分查询 SQL ,仅供参考:

1.查询接口总体请求成功率

* and appVer>="4.9.0" | select date_format(date_trunc('day', __time__), '%m-%d') as time, round(try_cast(count_if(responseCode = 200 or responseCode = 304 or responseCode = 206) as double)/count(1), 4) as success_rate from log where (appName = 'com.test.demo' or appName = 'com.test1.demo') group by time order by time limit 1000

网络监控sql查询1.png

2.总体请求成功率细分

* and appVer>="4.9.0"  | select date_format(date_trunc('day', __time__), '%m-%d') as time, round(try_cast(count_if((responseCode = 200 or responseCode = 304 and responseCode = 206) and platform = 'iOS') as double)/count_if(platform = 'iOS'), 4) as iOS_Success_Rate, round(try_cast(count_if((responseCode = 200 or responseCode = 304 or responseCode = 206) and platform = 'Android') as double)/count_if(platform = 'Android'), 4) as Android_Success_Rate  from log where appName = 'com.test.demo' or appName = 'com.test1.demo' group by time order by time limit 1000

网络监控sql查询2.png

3.接口平均耗时

  • 接口平均耗时(总体)
* and appVer>="4.9.0"  |
select platform,round(sum(endTime-beginTime)*1.0/count(*),2) as avgHandleTime
where appName = 'com.test.demo' or appName = 'com.test1.demo'
group by platform
order by avgHandleTime desc
  • 接口平均耗时(iOS)
* and appVer>="4.9.0" and platform: "iOS" and appName:"com.test.demo" |
select url,round(sum(endTime-beginTime)*1.0/count(*),2) as avgHandleTime,count(*) as count
group by url
order by avgHandleTime desc

相关文章

  • iOS APP网络监控 - 查询指南

    网络监控组件所采集的信息都上报到了 support-logs 这个 project 的 yyzc-logs[htt...

  • NSURLCache 网络请求缓存指南

    iOS NSURLSession 指南 - iOS平凡之路 - SegmentFault 思否 76.iOS 网络...

  • iOS8人机交互指南(2)

    前一篇:iOS 8人机交互指南(1) 2. iOS App 剖析(iOS App Anatomy) Almost ...

  • IOS app审核指南

    IOS App 审核指南 原文地址: https://developer.apple.com/app-store/...

  • 监听网络

    ios 注册通知、监听 iOS-OC-监听网络状态,有网时数据自动刷新 iOS实时监控网络状态的改变 简书 iOS...

  • APP设计与用户体验

    部分翻译APP设计相关文章 Watch app icon设计终极指南 非官方的iOS设计指南 如何优雅地搞砸你的a...

  • iOS 网络监控

    iOS 网络监控 前言 最近公司业务需要,对网络进行监控,本文主要记录下在网络流量监控实现过程中遇到的一些问题的解...

  • iOS 网络监控

    1.背景 随着业务的发展,用户对于网络的依赖场景会越来越多,随之而来遇到的各种异常网络场景也越来越多。 1、为了保...

  • iOS-转让App

    iOS 开发者帐号 App转让/转移 及转移后的证书问题解答(多图慎入)iOS开发-App迁移指南(App tra...

  • 苹果商店怎么样写你的APP产品页面来实现ASO

    Apple App Store的终极ASO指南(iOS 12更新) - 2018年更新 为App Store产品页...

网友评论

      本文标题:iOS APP网络监控 - 查询指南

      本文链接:https://www.haomeiwen.com/subject/fmilpltx.html