httpTimeout

Number类型,单位为毫秒(ms)。

如果你希望监控较慢的HTTP请求,则可以通过httpTimeout配置阈值,比如1000:

  • 使用init方法配置(推荐)

插件版本 >= 2.0.0

  1. fundebug.init({
  2. httpTimeout : 1000
  3. })
  • 通过fundebug配置
  1. if ("fundebug" in window) {
  2. fundebug.httpTimeout = 1000;
  3. }

则所有花费时间超过1000ms的请求都会上报到Fundebug。