gitextract_bgkf6_pj/ ├── LXDAppMonitor/ │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets/ │ │ └── AppIcon.appiconset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── LXDAppMonitor/ │ │ ├── Crash/ │ │ │ ├── LXDCrashLogger.h │ │ │ ├── LXDCrashLogger.m │ │ │ ├── LXDCrashMonitor.h │ │ │ └── LXDCrashMonitor.m │ │ ├── FPS/ │ │ │ ├── LXDFPSDisplayer.h │ │ │ ├── LXDFPSDisplayer.m │ │ │ ├── LXDFPSMonitor.h │ │ │ ├── LXDFPSMonitor.m │ │ │ ├── LXDWeakProxy.h │ │ │ └── LXDWeakProxy.m │ │ ├── Fluency/ │ │ │ ├── LXDAppFluencyMonitor.h │ │ │ └── LXDAppFluencyMonitor.m │ │ ├── Intercept/ │ │ │ ├── LXDDNSInterceptor.h │ │ │ ├── LXDDNSInterceptor.m │ │ │ ├── LXDHostFilterRule.h │ │ │ ├── LXDHostFilterRule.m │ │ │ ├── LXDHostMapper.h │ │ │ ├── LXDHostMapper.m │ │ │ ├── NSURLProtocol+WebKitSupport.h │ │ │ └── NSURLProtocol+WebKitSupport.m │ │ ├── Resource/ │ │ │ ├── LXDApplicationCPU.h │ │ │ ├── LXDApplicationCPU.m │ │ │ ├── LXDApplicationMemory.h │ │ │ ├── LXDApplicationMemory.m │ │ │ ├── LXDCPUDisplayer.h │ │ │ ├── LXDCPUDisplayer.m │ │ │ ├── LXDMemoryDisplayer.h │ │ │ ├── LXDMemoryDisplayer.m │ │ │ ├── LXDResourceMonitor.h │ │ │ ├── LXDResourceMonitor.m │ │ │ ├── LXDSystemCPU.h │ │ │ ├── LXDSystemCPU.m │ │ │ ├── LXDSystemMemory.h │ │ │ └── LXDSystemMemory.m │ │ └── Tool/ │ │ ├── Backtrace/ │ │ │ ├── LXDBacktraceLogger.h │ │ │ └── LXDBacktraceLogger.m │ │ ├── Dispatch/ │ │ │ ├── LXDDispatchAsync.h │ │ │ ├── LXDDispatchAsync.m │ │ │ ├── LXDDispatchOperation.h │ │ │ └── LXDDispatchOperation.m │ │ ├── Performance/ │ │ │ ├── LXDTransaction.h │ │ │ └── LXDTransaction.m │ │ ├── Timer/ │ │ │ ├── LXDGlobalTimer.h │ │ │ └── LXDGlobalTimer.m │ │ └── UI/ │ │ ├── LXDAsyncLabel.h │ │ ├── LXDAsyncLabel.m │ │ ├── LXDMonitorUI.h │ │ ├── LXDTopWindow.h │ │ ├── LXDTopWindow.m │ │ ├── UIApplication+LXDTool.h │ │ └── UIApplication+LXDTool.m │ ├── ViewController.h │ ├── ViewController.m │ ├── WebViewController.h │ ├── WebViewController.m │ ├── WebViewController.xib │ └── main.m ├── LXDAppMonitor.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata/ │ │ └── linxinda.xcuserdatad/ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata/ │ └── linxinda.xcuserdatad/ │ ├── xcdebugger/ │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes/ │ ├── LXDAppMonitor.xcscheme │ └── xcschememanagement.plist ├── LXDAppMonitorTests/ │ ├── Info.plist │ └── LXDAppMonitorTests.m ├── LXDAppMonitorUITests/ │ ├── Info.plist │ └── LXDAppMonitorUITests.m └── ReadMe.md