Performance: getEntriesByType() method

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2015.

Note: This feature is available in Web Workers.

The getEntriesByType() method returns an array of PerformanceEntry objects currently present in the performance timeline for a given type.

If you are interested in performance entries of certain name, see getEntriesByName(). For all performance entries, see getEntries().

Note: This method does not notify you about new performance entries; you will only get entries that are present in the performance timeline at the time you call this method. To receive notifications about entries as they become available, use a PerformanceObserver.

The following entry types are not supported by this method at all and won't be returned even if entries for these types might exist:

To access entries of these types, you must use a PerformanceObserver instead.

Syntax

js
getEntriesByType(type)

Parameters

type

The type of entry to retrieve such as "mark". The valid entry types are listed in PerformanceEntry.entryType. The supported entryTypes can be retrieved using the static property PerformanceObserver.supportedEntryTypes.

Return value

An Array of PerformanceEntry objects that have the specified type. The items will be in chronological order based on the entries' startTime. If no objects have the specified type, or no argument is provided, an empty array is returned.

Examples

Logging resource entries

The following example logs all entries with the type "resource".

js
const resources = performance.getEntriesByType("resource");
resources.forEach((entry) => {
  console.log(`${entry.name}'s startTime: ${entry.startTime}`);
});

Specifications

Specification
Performance Timeline
# dom-performance-getentriesbytype

Browser compatibility

Report problems with this compatibility data on GitHub
desktopmobileserver
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
Deno
Node.js
getEntriesByType

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support
Requires a vendor prefix or different name for use.
Has more compatibility info.

See also