This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The disconnect() method of the ReportingObserver interface stops a reporting observer that had previously started observing from collecting reports.
After calling disconnect(), neither ReportingObserver.takeRecords() nor the records parameter of the ReportingObserver() callback will return any reports. The associated observer will no longer be active.
Syntax
reportingObserverInstance.disconnect()
Examples
let options = {
types: ['deprecation'],
buffered: true
}
let observer = new ReportingObserver(function(reports, observer) {
reportBtn.onclick = () => displayReports(reports);
}, options);
observer.observe()
...
observer.disconnect()
Specifications
| Specification | Status | Comment |
|---|---|---|
| Reporting API The definition of 'ReportingObserver.disconnect()' in that specification. |
Editor's Draft |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
disconnect | Chrome Full support 69 | Edge Full support 79 | Firefox No support No | IE No support No | Opera Full support 56 | Safari No support No | WebView Android Full support 69 | Chrome Android Full support 69 | Firefox Android No support No | Opera Android Full support 48 | Safari iOS No support No | Samsung Internet Android Full support 10.0 |
Legend
- Full support
- Full support
- No support
- No support
- Experimental. Expect behavior to change in the future.
- Experimental. Expect behavior to change in the future.
