Fundebug front-end exception monitoring service
Fundebug provides professional front-end exception monitoring services. Our plug-ins can provide comprehensive exception monitoring and help developers locate various front-end exceptions, including but not limited to JavaScript execution errors and HTTP request errors.
In addition, Fundebug supports Source Map restoration, recording user behavior and "recording" user operation videos to help developers quickly reproduce bugs and improve Debug efficiency. You are welcome to try it for free~
Fundebug front-end exception monitoring plugin has been updated to 2.8.4, which supports configurations monitorHttpBody
and monitorHttpResponse
.
On the details page of each error event, there is a "User Action" tab. User behavior records behavior data such as user clicks, user input, network requests, page jumps, and console logs.
Currently, the network request user behavior does not record the returned data of the requested Body request. For better debugging, three new configurable properties are added.
The default is false
, and it needs to be set to true
to enable it.
1. Add monitorHttpBody attribute
fundebug.init({
monitorHttpBody: true
});
2. Add monitorResponse attribute
fundebug.init({
monitorHttpResponse: true
});
3. Add sensitives attribute
Because the body may contain sensitive information, such as mobile phone number, password, bank account number, etc. By default password
field will be filtered.
In order to filter sensitive information more flexibly, the sensitives
attribute can be configured.
fundebug.init({
sensitives: ['bankaccount', 'email', 'phoneNumber']
});
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。