使用 raven-js 将附加变量传递给哨兵
Pass additional variables to sentry using raven-js
我正在尝试使用 raven-js 捕获 js 错误。我有以下代码
...
try
rs.endsWith "#{rsp.source_identifier}/"
catch e
Raven.captureException(e, {extra:{rs: rs, app: app}})
我在哨兵中看到这个错误,但我没有看到额外的变量,例如rs 和应用程序。我看到的唯一额外内容是:
"session:duration": 581889
完全错误 json 我看到以下内容:
"errors": [
{
"type": "invalid_attribute",
"name": "rs"
},
{
"type": "invalid_attribute",
"name": "app"
}
],
"extra": {
"session:duration": 581889
},
如何将这个变量传递给哨兵,让它们真正出现在哨兵中?
如果您向下滚动到问题视图的底部,这应该会显示在 "Additional data" 框下方。
如果这对你不起作用,你能联系我吗?我是 eric@getsentry.com.
我正在尝试使用 raven-js 捕获 js 错误。我有以下代码
...
try
rs.endsWith "#{rsp.source_identifier}/"
catch e
Raven.captureException(e, {extra:{rs: rs, app: app}})
我在哨兵中看到这个错误,但我没有看到额外的变量,例如rs 和应用程序。我看到的唯一额外内容是:
"session:duration": 581889
完全错误 json 我看到以下内容:
"errors": [
{
"type": "invalid_attribute",
"name": "rs"
},
{
"type": "invalid_attribute",
"name": "app"
}
],
"extra": {
"session:duration": 581889
},
如何将这个变量传递给哨兵,让它们真正出现在哨兵中?
如果您向下滚动到问题视图的底部,这应该会显示在 "Additional data" 框下方。
如果这对你不起作用,你能联系我吗?我是 eric@getsentry.com.