W3cubDocs

/Web APIs

Performance: eventCounts property

The read-only performance.eventCounts property is an EventCounts map containing the number of events which have been dispatched per event type.

Not all event types are exposed. You can only get counts for event types supported by the PerformanceEventTiming interface.

Value

An EventCounts map. (A read-only Map without the clear(), delete(), and set() methods).

Examples

Reporting event types and their counts

If you like to send event counts to your analytics, you may want to implement a function like sendToEventAnalytics which takes the event counts from the performance.eventCounts map and then uses the Fetch API to post the data to your endpoint.

js

// Report all exposed events
for (entry of performance.eventCounts.entries()) {
  const type = entry[0];
  const count = entry[1];
  // sendToEventAnalytics(type, count);
}

// Report a specific event
const clickCount = performance.eventCounts.get("click");
// sendToEventAnalytics("click", clickCount);

// Check if an event count is exposed for a type
const isExposed = performance.eventCounts.has("mousemove"); // false

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
eventCounts 85 85 89 No 71 No 85 85 89 60 No 14.0

See also

© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Performance/eventCounts