This feature is not Baseline because it does not work in some of the most widely-used browsers.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
Note: This feature is available in Web Workers, except for Service Workers.
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The PressureRecord interface is part of the Compute Pressure API and describes the pressure trend of a source at a specific moment of transition.
PressureRecord.source Read only Experimental
A string indicating the origin source from which the record is coming.
PressureRecord.state Read only Experimental
A string indicating the pressure state recorded.
PressureRecord.time Read only Experimental
A DOMHighResTimeStamp indicating the timestamp of the record.
PressureRecord.toJSON() Experimental
Returns a JSON representation of the PressureRecord object.
PressureRecord objectIn the following example we log the properties of the PressureRecord object in the pressure observer callback.
function callback(records) {
const lastRecord = records[records.length - 1];
console.log(`Current pressure is ${lastRecord.state}`);
console.log(`Current pressure observed at ${lastRecord.time}`);
console.log(`Current pressure source: ${lastRecord.source}`);
}
try {
const observer = new PressureObserver(callback);
await observer.observe("cpu", {
sampleInterval: 1000, // 1000ms
});
} catch (error) {
// report error setting up the observer
}
| Specification |
|---|
| Compute Pressure Level 1> # the-pressurerecord-interface> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
PressureRecord |
125 | 125 | No | 111 | No | No | No | No | No | No | No | No |
source |
125 | 125 | No | 111 | No | No | No | No | No | No | No | No |
state |
125 | 125 | No | 111 | No | No | No | No | No | No | No | No |
time |
125 | 125 | No | 111 | No | No | No | No | No | No | No | No |
toJSON |
125 | 125 | No | 111 | No | No | No | No | No | No | No | No |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/PressureRecord