raygun4js
Version:
Raygun.io plugin for JavaScript
21 lines (18 loc) • 502 B
HTML
<html>
<head>
<title>Raygun4JS with V1 API</title>
<script src="/fixtures/common/instrumentXHRs.js"></script>
<script src="/dist/raygun.js"></script>
</head>
<body>
<script type="text/javascript">
Raygun.init('abcdef==', { disablePulse: false, allowInsecureSubmissions: true });
setTimeout(function () {
Raygun.trackEvent('pageView', {
path: '/foobar'
});
}, 1000);
</script>
</body>
</html>