We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb407cb commit 29149ebCopy full SHA for 29149eb
packages/platforms/ios/src/index.ts
@@ -68,10 +68,10 @@ export class IOSProfiler implements Profiler {
68
pollPerformanceMeasures(bundleId: string, options: ProfilerPollingOptions): { stop: () => void } {
69
this.onMeasure = options.onMeasure;
70
const cpuAndMemoryPolling = exec(
71
- `pyidevice instruments appmonitor --format=flush -b ${bundleId} --time 10`
+ `pyidevice instruments appmonitor --format=flush -b ${bundleId} --time 500`
72
);
73
74
- const fpsPolling = exec(`pyidevice instruments fps --format=flush --time 100`);
+ const fpsPolling = exec(`pyidevice instruments fps --format=flush --time 500`);
75
76
this.parseData(cpuAndMemoryPolling, "cpu");
77
this.parseData(fpsPolling, "fps");
0 commit comments