クライアント側で発生する可能性のある HTTP / JS エラーを収集するために、Sentry アプリケーションをセットアップしました。ただし、約 400 の HTTP リクエストを作成しようとすると、Sentry はリクエストを適切にキャプチャできなかったようです。
それは Sentry のデフォルトの動作ですか、それとも私のコード (以下) に何か欠けているのですか?
<!DOCTYPE html>
<html>
<head>
<title>Hi there</title>
<script src="//code.jquery.com/jquery-1.12.0.min.js"></script>
<script src="https://cdn.ravenjs.com/2.1.1/raven.min.js"></script>
<script>Raven.config('http://xxx@xxx.xxxxx.com/4').install();</script>
</head>
<body>
Hello the world :-)
<script type="text/javascript">
$.get("http://somehttp400url.com/");
</script>
</body>
</html>
ご意見ありがとうございます