kok202
센트리 자바스크립트 샘플 코드

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 일 경우 연결 에러가 뜹니다.