事件:'uncaughtExceptionMonitor'
添加於:v13.7.0、v12.17.0
參數
err
<Error> 未捕獲的異常。origin
<string> 指示異常是源自未處理的拒絕還是源自同步錯誤。可以是'uncaughtException'
或'unhandledRejection'
。後者用於在基於Promise
的異步上下文中發生異常(或者如果Promise
被拒絕)並且--unhandled-rejections
strict
或throw
(這是默認值)並且拒絕未處理,或者在命令行入口點的 ES 模塊靜態加載階段發生拒絕時。
'uncaughtExceptionMonitor'
事件在'uncaughtException'
事件被發出或通過
安裝的鉤子被調用之前發出。process.setUncaughtExceptionCaptureCallback()
一旦發出 'uncaughtException'
事件,安裝 'uncaughtExceptionMonitor'
偵聽器不會改變行為。如果沒有安裝'uncaughtException'
監聽器,該進程仍然會崩潰。
import process from 'node:process'; process.on('uncaughtExceptionMonitor', (err, origin) => { MyMonitoringTool.logSync(err, origin); }); // Intentionally cause an exception, but don't catch it. nonexistentFunc(); // Still crashes Node.js
const process = require('node:process'); process.on('uncaughtExceptionMonitor', (err, origin) => { MyMonitoringTool.logSync(err, origin); }); // Intentionally cause an exception, but don't catch it. nonexistentFunc(); // Still crashes Node.js
相關用法
- Node.js proces 'uncaughtException'事件用法及代碼示例
- Node.js stream.Writable 'unpipe'事件用法及代碼示例
- Node.js proces 'unhandledRejection'事件用法及代碼示例
- Node.js http.ClientRequest 'upgrade'事件用法及代碼示例
- Node.js tls.Server 'keylog'事件用法及代碼示例
- Node.js http.Server 'clientError'事件用法及代碼示例
- Node.js cluste 'disconnect'事件用法及代碼示例
- Node.js proces 'exit'事件用法及代碼示例
- Node.js stream.Writable 'pipe'事件用法及代碼示例
- Node.js stream.Readable 'end'事件用法及代碼示例
- Node.js cluste 'fork'事件用法及代碼示例
- Node.js Http2Session 'remoteSettings'事件用法及代碼示例
- Node.js Worker 'listening'事件用法及代碼示例
- Node.js tls.Server 'resumeSession'事件用法及代碼示例
- Node.js InterfaceConstructor 'pause'事件用法及代碼示例
- Node.js fs.FSWatcher 'change'事件用法及代碼示例
- Node.js stream.Readable 'data'事件用法及代碼示例
- Node.js http.ClientRequest 'connect'事件用法及代碼示例
- Node.js Http2Session 'localSettings'事件用法及代碼示例
- Node.js REPLServer 'exit'事件用法及代碼示例
- Node.js cluste 'online'事件用法及代碼示例
- Node.js tls.TLSSocket 'session'事件用法及代碼示例
- Node.js Worker 'exit'事件用法及代碼示例
- Node.js cluste 'exit'事件用法及代碼示例
- Node.js Http2Stream 'trailers'事件用法及代碼示例
注:本文由純淨天空篩選整理自nodejs.org大神的英文原創作品 'uncaughtExceptionMonitor'事件。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。