4

我正在尝试设置一个基本示例,通过 js 发送自定义的敬业度.io 事件。目前我不需要任何演示、可视化等。

这是我从网上找到的另一个示例创建的示例。我尝试了几种变体,它们都可以在 Google Chrome 中运行,但它们都不能在 Firefox 中运行(Ubuntu canonical 为 38.0 - 1.0)。

  1. 如果我按照手册中的建议将内联脚本( !function(a,b){a("Keen"... )添加到头部,我不会在 FF 中收到任何错误,但似乎addEvent永远不会被调用并且它没有产生响应,“err”或“res”。

  2. 如果我包含 CDN ( d26b395fwzu5fz.cloudfront.net/3.2.4/keen.min.js ) 中的库,则在加载页面时会出现错误:

    ReferenceError: Keen 未定义
    var quietClient = new Keen({

  3. 如果我下载 js 文件并在本地提供它,单击按钮后,我收到以下错误响应:

    错误:请求失败
    err = new Error(is_err ? res.body.message : '发生未知错误');

所有这些尝试都可以在 Chrome 中使用,但我也需要在其他浏览器中使用。

4

1 回答 1

3

我收到了来自 crazy.io 团队的回复。事实证明,Adblock Plus 正在干扰脚本。在我禁用它之后,一切都在 FF 中工作,就像在 Chrome 中一样。


经过一番调查后发现,对http://api.keen.io的请求被 ABP 的“EasyPrivacy”过滤器阻止了,这些过滤器规则:keen.io^$third-party,domain=~keen.github.io| ~keen.io

因此,向“中间”服务器(代理)发送请求似乎是我能看到的唯一解决方案。


我们有一个特定的用例——需要跟踪静态站点以及对 rails api 服务器的可用访问,但我们最终使用的解决方案可能对某人有用。

错误.html

<html>
<head>
  <title>Error</title>
  <script src="/js/vendor/jquery-1.11.2.min.js"></script>
  <script src="/js/notification.js"></script>
  <script type="text/javascript">
    $(document).on('ready', function () {
      try {
        $.get(document.URL).complete(function (xhr, textStatus) {
          var code = xhr.status;
          if (code == 200) {
            var codeFromPath = window.location.pathname.split('/').reverse()[0].split('.')[0];
            if (['400', '403', '404', '405', '414', '416', '500', '501', '502', '503', '504'].indexOf(codeFromPath) > -1) {
              code = codeFromPath;
            }
          }
          Notification.send(code);
        });
      }
      catch (error) {
        Notification.send('error.html', error);
      }
    });
  </script>
</head>
<body>
There was an error. Site Administrators were notified.
</body>
</html>

通知.js

var Notification = (function () {

  var endpoint = 'http://my-rails-server-com/notice';

  function send(type, jsData) {
    try {
      if (jsData == undefined) {
        jsData = {};
      }

      $.post(endpoint, clientData(type, jsData));
    }
    catch (error) {
    }
  }

  //  private
  function clientData(type, jsData) {
    return {
      data: {
        type: type,
        jsErrorData: jsData,
        innerHeight: window.innerHeight,
        innerWidth: window.innerWidth,
        pageXOffset: window.pageXOffset,
        pageYOffset: window.pageYOffset,
        status: status,
        navigator: {
          appCodeName: navigator.appCodeName,
          appName: navigator.appName,
          appVersion: navigator.appVersion,
          cookieEnabled: navigator.cookieEnabled,
          language: navigator.language,
          onLine: navigator.onLine,
          platform: navigator.platform,
          product: navigator.product,
          userAgent: navigator.userAgent
        },

        history: {
          length: history.length
        },
        document: {
          documentMode: document.documentMode,
          documentURI: document.documentURI,
          domain: document.domain,
          referrer: document.referrer,
          title: document.title,
          URL: document.URL
        },
        screen: {
          width: screen.width,
          height: screen.height,
          availWidth: screen.availWidth,
          availHeight: screen.availHeight,
          colorDepth: screen.colorDepth,
          pixelDepth: screen.pixelDepth
        },
        location: {
          hash: window.location.hash,
          host: window.location.host,
          hostname: window.location.hostname,
          href: window.location.href,
          origin: window.location.origin,
          pathname: window.location.pathname,
          port: window.location.port,
          protocol: window.location.protocol,
          search: window.location.search
        }
      }
    }
  }

  return {
    send: send
  }
}());

从 js 代码手动发送通知的示例:

try {
  // some code that may produce an error
}
catch (error) {
  Notification.send('name of keen collection', error);
}

导轨

# gemfile
gem 'keen'

#routes
resource :notice, only: :create

#controller
class NoticesController < ApplicationController

  def create
    # response to Keen.publish does not include an ID of the newly added notification, so we add an identifier
    # that we can use later to easily track down the exact notification on keen
    data = params['data'].merge('id' => Time.now.to_i)

    Keen.publish(data['type'], data) unless dev?(data)

    # we send part of the payload to a company chat, channel depends on wheter the origin of exception is in dev or production
    ChatNotifier.notify(data, dev?(data)) unless data['type'] == '404'
    render json: nil, status: :ok
  end

  private

  def dev?(data)
    %w(site local).include?(data['location']['origin'].split('.').last)
  end
end
于 2015-05-21T08:56:23.050 回答