센트리 자바스크립트 샘플 코드
2019. 3. 27. 18:52ㆍ[정리] 기능별 개념 정리/Sentry
createError.html
<!DOCTYPE html>
<html>
<head>
<script src="https://browser.sentry-cdn.com/4.6.5/bundle.min.js" crossorigin="anonymous"></script>
</head>
<body>
<h2>JavaScript</h2>
<p>This example uses sentry 9.0.0</p>
<button id="myBtn">create</button>
<script>
Sentry.init({
dsn: '센트리 클라이언트 DSN',
maxBreadcrumbs: 50,
debug: true,
});
document.getElementById("myBtn").addEventListener("click", myFunction);
function myFunction() {
Sentry.captureMessage('Something went wrong');
}
</script>
</body>
</html>
삽질 ! : Sentry의 Client DSN을 Sentry가 설치된 localhost 서버로 연결할 경우 https 가아닌 http 로 연결해야합니다. https 일 경우 연결 에러가 뜹니다.
'[정리] 기능별 개념 정리 > Sentry' 카테고리의 다른 글
Sentry on-premise 로컬 서버 start, stop 쉘스크립트 (0) | 2019.04.01 |
---|---|
sentry-cli를 통해 JS source map 업로드하기 (0) | 2019.03.29 |
센트리 자바 샘플 코드 (0) | 2019.03.27 |
센트리 on-premise 서버 mac local 에서 띄우기 (0) | 2019.03.27 |