代码之家  ›  专栏  ›  技术社区  ›  Paul T.

mxSignpost事件在Xcode Organizer中可见吗?

  •  0
  • Paul T.  · 技术社区  · 3 年前

    我可以将一些重要的代码(我想观察新应用程序版本的性能变化)包装在

    let handle = MXMetricManager.makeLogHandle(category: "Custom Category")
    mxSignpost(.begin, log: handle, name: "Custom Event Name")
    

    mxSignpost(.end, log: handle, name: "Custom Event Name")
    

    据我所知,当我使用 MXMetricManager.shared.add(someClass) 和在 MXMetricManagerSubscriber 代表我每24小时收到一次报告,这些报告将包含一个单独的绩效部分 mxSignpost(.begin) mxSignpost(.end) .

    问题是:

    我能在Xcode Organizer中看到上面代码中“自定义事件名称”或“自定义类别”的这些性能分离吗?

    enter image description here

    0 回复  |  直到 3 年前
        1
  •  5
  •   iUrii    3 年前

    度量组织者在文档中没有此功能:

    MetricKit超越了度量组织者中显示的度量,包括平均像素亮度、蜂窝网络条件以及与应用程序中自定义OSSignpost事件相关的持续时间。 https://developer.apple.com/documentation/metrickit/improving_your_app_s_performance .

    获取其正在检查的路标信息的唯一方法 MXMetricPayload :

    import UIKit
    import MetricKit
    
    @UIApplicationMain
    class AppDelegate: UIResponder, UIApplicationDelegate {
        func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
            MXMetricManager.shared.add(self)
            return true
        }
    
        func applicationWillTerminate(_ application: UIApplication) {
            MXMetricManager.shared.remove(self)
        }
    }
    
    extension AppDelegate: MXMetricManagerSubscriber {
        func didReceive(_ payloads: [MXMetricPayload]) {
            for payload in payloads {
                if let signpostMetrics = payload.signpostMetrics {
                    for metric in signpostMetrics {
                        print(metric.description)
                    }
                }
            }
        }
    }