A fast way to take a Hermes heap profile from javascript in React Native. Inspired by react-native-release-profiler.
- Sometimes it is useful to be able to imperatively take a heap profile from javascript, for example when a user performs a specific action.
- Streaming the profile using chrome devtools is much less reliable and leads to a lot of app crashes and hangs (which may be improved in the future).
- Hermes also exposes some other helpful information (e.g. heap data) that is not available in the chrome devtools.
npm install react-native-heap-profiler
yarn add react-native-heap-profiler
import {
getHeapInfo,
createHeapSnapshot,
measureAllocationSize
} from 'react-native-heap-profiler';
// Run `npx react-native-heap-profiler --appId=com.your.app.id --outputDir=/path/to/output`
// to get the heap snapshot from your android device (dev only)
const path = createHeapSnapshot();
// Get realtime heap information from hermes (works in production)
const heapInfo = getHeapInfo(path);
console.log(heapInfo.hermes_allocatedBytes);
// Logs the number of bytes allocated by the function (works in production)
const allocationSize = measureAllocationSize(() => {
new Array(1000000);
});
- Install react-native-heap-profiler
- Start your app in development mode
- Take a heap profile
import { createHeapSnapshot } from 'react-native-heap-profiler';
createHeapSnapshot();
- Pull the snapshot from your device
Android:
First find your app id. It should look something like com.mypackage and be visible in app/build.gradle in the defaultConfig section:
android {
defaultConfig {
applicationId "com.profilern" // <-- This one!
// ...
}
}
Then you can run this command:
npx react-native-heap-profiler --appId=com.your.app.id --outputDir=/path/to/output
iOS:
On iOS you can use react-native-share
to share the file to your computer:
if (Platform.OS === 'ios') {
const path = createHeapSnapshot();
const actualPath = `file://${path}`;
try {
await Share.open({
url: actualPath,
title: 'Save heapsnapshot',
type: 'application/json',
});
} catch (error) {
// An error is thrown when the user doesn't share, but we catch
// this since that is fine
}
}
Fields returned from hermes when getting heap information. hermes_allocatedBytes
represents the current number of allocated bytes in the heap.
export interface HermesHeapInfo {
hermes_allocatedBytes: number;
hermes_externalBytes: number;
hermes_full_gcCPUTime: number;
hermes_full_gcCPUTimeSquares: number;
hermes_full_gcMaxCPUPause: number;
hermes_full_gcTime: number;
hermes_full_gcTimeSquares: number;
hermes_full_maxPause: number;
hermes_full_numCollections: number;
hermes_heapSize: number;
hermes_mallocSizeEstimate: number;
hermes_numCollections: number;
hermes_numMarkStackOverflows: number;
hermes_peakAllocatedBytes: number;
hermes_peakLiveAfterGC: number;
hermes_totalAllocatedBytes: number;
hermes_va: number;
hermes_yg_gcCPUTime: number;
hermes_yg_gcCPUTimeSquares: number;
hermes_yg_gcMaxCPUPause: number;
hermes_yg_gcTime: number;
hermes_yg_gcTimeSquares: number;
hermes_yg_maxPause: number;
hermes_yg_numCollections: number;
}
createHeapSnapshot(): string
(Dev only!)
Takes a heap snapshot and returns the path to the snapshot file. See the usage section above for details
const pathToFile = createHeapSnapshot();
getHeapInfo(includeExpensive: boolean): HermesHeapInfo
Request statistics about the current state of the runtime's heap. This function can be called at any time, and should produce information that is correct at the instant it is called (i.e, not stale). Works in production and development.
const heapInfo = getHeapInfo(true);
console.log(heapInfo.hermes_allocatedBytes); // 123456
measureAllocationSize(f: () => any): number
Compares the number of bytes allocated before and after a function call and returns the difference. This is useful for measuring the size of objects. Note that this function runs garbage collection before the function, so the results should be quite stable. Still, it is best to average a series of many measurements and exclude outliers. Works in production and development.
const allocationSize = measureAllocationSize(() => {
const trie = new Trie();
for (const word of ['a', 'ab', 'abc', 'abcd', 'abcde', 'abcdef' /* ... */]) {
trie.add(word);
}
});
console.log(allocationSize); // 1152640
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library