web api event
Performance: resourcetimingbufferfull event
Available in workers
The resourcetimingbufferfull event is fired when the browser’s resource timing buffer is full.
Syntax
Use the event name in methods like addEventListener(), or set an event handler property.
addEventListener("resourcetimingbufferfull", (event) => { })
onresourcetimingbufferfull = (event) => { }
Event type
A generic Event.
Examples
Increasing size when buffer is full
The following example listens for the resourcetimingbufferfull event and increases the buffer size using the setResourceTimingBufferSize() method.
function increaseFilledBufferSize(event) {
console.log(
"WARNING: Resource Timing Buffer is FULL! Increasing buffer size to 500.",
);
performance.setResourceTimingBufferSize(500);
}
performance.addEventListener(
"resourcetimingbufferfull",
increaseFilledBufferSize,
);
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.