摘要: Fundebug的JavaScript错误监控插件更新至0.4.0,支持过滤特定属性不存在的错误。
通过配置filters属性,用户可以过滤掉一些不需要捕获的错误,比如Script error.
filters只能在JavasScript中配置:
fundebug.filters = [
{
message: /^Script error\.$/
}]
之前,filters中的过滤规则仅支持正则表达式,现在可以通过配置”inexistence”值来过滤特定属性不存在的错误。
fundebug.filters = [
{
target:
{
tagName: /^IMG$/,
status: "inexistence"
}
}]
fundebug.filters = [
{
req:
{
method: /^GET$/
},
res:
{
status: "inexistence"
}
}]
另外,0.4.0的插件还支持错误采样
转载时请注明作者 Fundebug以及本文地址:
https://blog.fundebug.com/2018/05/10/fundebug-javascript-0-4-0/