├── .gitignore ├── Example ├── APMInsight_iOS.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── APMInsight_iOS.xcscheme │ └── xcuserdata │ │ └── xuminghao.eric.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── APMInsight_iOS.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── xuminghao.eric.xcuserdatad │ │ ├── IDEFindNavigatorScopes.plist │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist ├── APMInsight_iOS │ ├── ALogUpload │ │ ├── APMInsightALogViewController.h │ │ └── APMInsightALogViewController.m │ ├── APMHomeViewController.h │ ├── APMHomeViewController.m │ ├── APMInitialViewController.h │ ├── APMInitialViewController.m │ ├── APMInsightCellItem.h │ ├── APMInsightCellItem.m │ ├── APMInsightViewController.h │ ├── APMInsightViewController.m │ ├── APMInsight_iOS.entitlements │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── 120*120.png │ │ │ ├── 152*152.png │ │ │ ├── 167*167.png │ │ │ ├── 180*180.png │ │ │ ├── 76*76.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── LaunchImage.imageset │ │ │ ├── APM-LOGO-1倍图.png │ │ │ ├── APM-LOGO-2倍图.png │ │ │ ├── APM-LOGO-3倍图.png │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CPUMonitor │ │ ├── APMInsightCPUViewController.h │ │ └── APMInsightCPUViewController.m │ ├── CloudCommand │ │ ├── APMInsightCustomCloudHandler.h │ │ └── APMInsightCustomCloudHandler.m │ ├── CrashAnalysis │ │ ├── APMInsightCoredumpViewController.h │ │ ├── APMInsightCoredumpViewController.m │ │ ├── APMInsightCrashViewController.h │ │ ├── APMInsightCrashViewController.mm │ │ ├── APMInsightGWPASanViewController.h │ │ └── APMInsightGWPASanViewController.m │ ├── DiskAnalysis │ │ ├── APMInsightDiskViewController.h │ │ └── APMInsightDiskViewController.m │ ├── Doctor │ │ ├── APMInsightDoctorViewController.h │ │ └── APMInsightDoctorViewController.m │ ├── ErrorAnalysis │ │ ├── APMInsightExceptionViewController.h │ │ └── APMInsightExceptionViewController.m │ ├── EventAnalysis │ │ ├── APMInsightEventViewController.h │ │ ├── APMInsightEventViewController.m │ │ ├── EventRecordManager.h │ │ └── EventRecordManager.m │ ├── Info.plist │ ├── LaggingAnalysis │ │ ├── APMInsightLagViewController.h │ │ └── APMInsightLagViewController.m │ ├── MemoryOptimization │ │ ├── APMInsightAutoreleaseObject │ │ │ ├── APMInsightAutoreleaseObject.h │ │ │ └── APMInsightAutoreleaseObject.m │ │ ├── APMInsightCaptureUITestViewController.h │ │ ├── APMInsightCaptureUITestViewController.m │ │ ├── APMInsightCaptureUITestViewController.xib │ │ ├── APMInsightLargeObject │ │ │ ├── APMInsightLargeObject.h │ │ │ └── APMInsightLargeObject.m │ │ ├── APMInsightLeakedObject │ │ │ ├── APMInsightLeakedObject.h │ │ │ └── APMInsightLeakedObject.m │ │ ├── APMInsightMemoryViewController.h │ │ └── APMInsightMemoryViewController.m │ ├── NetworkAnalysis │ │ ├── APMInsightNetworkViewController.h │ │ └── APMInsightNetworkViewController.m │ ├── PageMonitoring │ │ ├── APMInsightHybridViewController.h │ │ ├── APMInsightHybridViewController.m │ │ ├── APMInsightWebViewController.h │ │ └── APMInsightWebViewController.m │ ├── ProtectorAnalysis │ │ ├── APMInsightProtectorObject.h │ │ ├── APMInsightProtectorObject.m │ │ ├── APMInsightProtectorViewController.h │ │ └── APMInsightProtectorViewController.m │ ├── UserExperience │ │ ├── APMInsightPerformanceViewController.h │ │ └── APMInsightPerformanceViewController.m │ └── main.m ├── APMInsight_iOS_extension │ ├── APMInsight_iOS_extension.entitlements │ ├── Base.lproj │ │ └── MainInterface.storyboard │ ├── Info.plist │ ├── ShareViewController.h │ └── ShareViewController.m ├── Gemfile ├── Gemfile.lock ├── Podfile └── Podfile.lock ├── LICENSE ├── README.md ├── RangersAPM.podspec └── 说明.md /.gitignore: -------------------------------------------------------------------------------- 1 | Example/Pods/ -------------------------------------------------------------------------------- /Example/APMInsight_iOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/APMInsight_iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/APMInsight_iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/APMInsight_iOS.xcodeproj/xcshareddata/xcschemes/APMInsight_iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS.xcodeproj/xcshareddata/xcschemes/APMInsight_iOS.xcscheme -------------------------------------------------------------------------------- /Example/APMInsight_iOS.xcodeproj/xcuserdata/xuminghao.eric.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS.xcodeproj/xcuserdata/xuminghao.eric.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/APMInsight_iOS.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/APMInsight_iOS.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/APMInsight_iOS.xcworkspace/xcuserdata/xuminghao.eric.xcuserdatad/IDEFindNavigatorScopes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS.xcworkspace/xcuserdata/xuminghao.eric.xcuserdatad/IDEFindNavigatorScopes.plist -------------------------------------------------------------------------------- /Example/APMInsight_iOS.xcworkspace/xcuserdata/xuminghao.eric.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS.xcworkspace/xcuserdata/xuminghao.eric.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Example/APMInsight_iOS/ALogUpload/APMInsightALogViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/ALogUpload/APMInsightALogViewController.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/ALogUpload/APMInsightALogViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/ALogUpload/APMInsightALogViewController.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/APMHomeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/APMHomeViewController.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/APMHomeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/APMHomeViewController.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/APMInitialViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/APMInitialViewController.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/APMInitialViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/APMInitialViewController.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/APMInsightCellItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/APMInsightCellItem.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/APMInsightCellItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/APMInsightCellItem.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/APMInsightViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/APMInsightViewController.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/APMInsightViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/APMInsightViewController.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/APMInsight_iOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/APMInsight_iOS.entitlements -------------------------------------------------------------------------------- /Example/APMInsight_iOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/AppDelegate.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/AppDelegate.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Example/APMInsight_iOS/Assets.xcassets/AppIcon.appiconset/120*120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/Assets.xcassets/AppIcon.appiconset/120*120.png -------------------------------------------------------------------------------- /Example/APMInsight_iOS/Assets.xcassets/AppIcon.appiconset/152*152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/Assets.xcassets/AppIcon.appiconset/152*152.png -------------------------------------------------------------------------------- /Example/APMInsight_iOS/Assets.xcassets/AppIcon.appiconset/167*167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/Assets.xcassets/AppIcon.appiconset/167*167.png -------------------------------------------------------------------------------- /Example/APMInsight_iOS/Assets.xcassets/AppIcon.appiconset/180*180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/Assets.xcassets/AppIcon.appiconset/180*180.png -------------------------------------------------------------------------------- /Example/APMInsight_iOS/Assets.xcassets/AppIcon.appiconset/76*76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/Assets.xcassets/AppIcon.appiconset/76*76.png -------------------------------------------------------------------------------- /Example/APMInsight_iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/APMInsight_iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/APMInsight_iOS/Assets.xcassets/LaunchImage.imageset/APM-LOGO-1倍图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/Assets.xcassets/LaunchImage.imageset/APM-LOGO-1倍图.png -------------------------------------------------------------------------------- /Example/APMInsight_iOS/Assets.xcassets/LaunchImage.imageset/APM-LOGO-2倍图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/Assets.xcassets/LaunchImage.imageset/APM-LOGO-2倍图.png -------------------------------------------------------------------------------- /Example/APMInsight_iOS/Assets.xcassets/LaunchImage.imageset/APM-LOGO-3倍图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/Assets.xcassets/LaunchImage.imageset/APM-LOGO-3倍图.png -------------------------------------------------------------------------------- /Example/APMInsight_iOS/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /Example/APMInsight_iOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/APMInsight_iOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/APMInsight_iOS/CPUMonitor/APMInsightCPUViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/CPUMonitor/APMInsightCPUViewController.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/CPUMonitor/APMInsightCPUViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/CPUMonitor/APMInsightCPUViewController.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/CloudCommand/APMInsightCustomCloudHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/CloudCommand/APMInsightCustomCloudHandler.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/CloudCommand/APMInsightCustomCloudHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/CloudCommand/APMInsightCustomCloudHandler.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/CrashAnalysis/APMInsightCoredumpViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/CrashAnalysis/APMInsightCoredumpViewController.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/CrashAnalysis/APMInsightCoredumpViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/CrashAnalysis/APMInsightCoredumpViewController.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/CrashAnalysis/APMInsightCrashViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/CrashAnalysis/APMInsightCrashViewController.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/CrashAnalysis/APMInsightCrashViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/CrashAnalysis/APMInsightCrashViewController.mm -------------------------------------------------------------------------------- /Example/APMInsight_iOS/CrashAnalysis/APMInsightGWPASanViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/CrashAnalysis/APMInsightGWPASanViewController.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/CrashAnalysis/APMInsightGWPASanViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/CrashAnalysis/APMInsightGWPASanViewController.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/DiskAnalysis/APMInsightDiskViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/DiskAnalysis/APMInsightDiskViewController.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/DiskAnalysis/APMInsightDiskViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/DiskAnalysis/APMInsightDiskViewController.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/Doctor/APMInsightDoctorViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/Doctor/APMInsightDoctorViewController.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/Doctor/APMInsightDoctorViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/Doctor/APMInsightDoctorViewController.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/ErrorAnalysis/APMInsightExceptionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/ErrorAnalysis/APMInsightExceptionViewController.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/ErrorAnalysis/APMInsightExceptionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/ErrorAnalysis/APMInsightExceptionViewController.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/EventAnalysis/APMInsightEventViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/EventAnalysis/APMInsightEventViewController.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/EventAnalysis/APMInsightEventViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/EventAnalysis/APMInsightEventViewController.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/EventAnalysis/EventRecordManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/EventAnalysis/EventRecordManager.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/EventAnalysis/EventRecordManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/EventAnalysis/EventRecordManager.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/Info.plist -------------------------------------------------------------------------------- /Example/APMInsight_iOS/LaggingAnalysis/APMInsightLagViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/LaggingAnalysis/APMInsightLagViewController.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/LaggingAnalysis/APMInsightLagViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/LaggingAnalysis/APMInsightLagViewController.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/MemoryOptimization/APMInsightAutoreleaseObject/APMInsightAutoreleaseObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/MemoryOptimization/APMInsightAutoreleaseObject/APMInsightAutoreleaseObject.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/MemoryOptimization/APMInsightAutoreleaseObject/APMInsightAutoreleaseObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/MemoryOptimization/APMInsightAutoreleaseObject/APMInsightAutoreleaseObject.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/MemoryOptimization/APMInsightCaptureUITestViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/MemoryOptimization/APMInsightCaptureUITestViewController.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/MemoryOptimization/APMInsightCaptureUITestViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/MemoryOptimization/APMInsightCaptureUITestViewController.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/MemoryOptimization/APMInsightCaptureUITestViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/MemoryOptimization/APMInsightCaptureUITestViewController.xib -------------------------------------------------------------------------------- /Example/APMInsight_iOS/MemoryOptimization/APMInsightLargeObject/APMInsightLargeObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/MemoryOptimization/APMInsightLargeObject/APMInsightLargeObject.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/MemoryOptimization/APMInsightLargeObject/APMInsightLargeObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/MemoryOptimization/APMInsightLargeObject/APMInsightLargeObject.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/MemoryOptimization/APMInsightLeakedObject/APMInsightLeakedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/MemoryOptimization/APMInsightLeakedObject/APMInsightLeakedObject.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/MemoryOptimization/APMInsightLeakedObject/APMInsightLeakedObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/MemoryOptimization/APMInsightLeakedObject/APMInsightLeakedObject.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/MemoryOptimization/APMInsightMemoryViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/MemoryOptimization/APMInsightMemoryViewController.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/MemoryOptimization/APMInsightMemoryViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/MemoryOptimization/APMInsightMemoryViewController.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/NetworkAnalysis/APMInsightNetworkViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/NetworkAnalysis/APMInsightNetworkViewController.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/NetworkAnalysis/APMInsightNetworkViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/NetworkAnalysis/APMInsightNetworkViewController.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/PageMonitoring/APMInsightHybridViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/PageMonitoring/APMInsightHybridViewController.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/PageMonitoring/APMInsightHybridViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/PageMonitoring/APMInsightHybridViewController.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/PageMonitoring/APMInsightWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/PageMonitoring/APMInsightWebViewController.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/PageMonitoring/APMInsightWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/PageMonitoring/APMInsightWebViewController.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/ProtectorAnalysis/APMInsightProtectorObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/ProtectorAnalysis/APMInsightProtectorObject.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/ProtectorAnalysis/APMInsightProtectorObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/ProtectorAnalysis/APMInsightProtectorObject.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/ProtectorAnalysis/APMInsightProtectorViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/ProtectorAnalysis/APMInsightProtectorViewController.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/ProtectorAnalysis/APMInsightProtectorViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/ProtectorAnalysis/APMInsightProtectorViewController.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/UserExperience/APMInsightPerformanceViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/UserExperience/APMInsightPerformanceViewController.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS/UserExperience/APMInsightPerformanceViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/UserExperience/APMInsightPerformanceViewController.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS/main.m -------------------------------------------------------------------------------- /Example/APMInsight_iOS_extension/APMInsight_iOS_extension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS_extension/APMInsight_iOS_extension.entitlements -------------------------------------------------------------------------------- /Example/APMInsight_iOS_extension/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS_extension/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /Example/APMInsight_iOS_extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS_extension/Info.plist -------------------------------------------------------------------------------- /Example/APMInsight_iOS_extension/ShareViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS_extension/ShareViewController.h -------------------------------------------------------------------------------- /Example/APMInsight_iOS_extension/ShareViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/APMInsight_iOS_extension/ShareViewController.m -------------------------------------------------------------------------------- /Example/Gemfile: -------------------------------------------------------------------------------- 1 | gem 'cocoapods', '1.9.3' -------------------------------------------------------------------------------- /Example/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/Gemfile.lock -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/README.md -------------------------------------------------------------------------------- /RangersAPM.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/RangersAPM.podspec -------------------------------------------------------------------------------- /说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volcengine/APMInsight_iOS/HEAD/说明.md --------------------------------------------------------------------------------