많은 개발 팀이 서버 측에서 OTeL(OpenTelemetry)을 활용하여 애플리케이션에서 로그, 추적, 메트릭과 같은 신호를 수집합니다. 그러나 종종 간과되는 것은 OTeL 브라우저 계측의 힘입니다. 이 클라이언트 측 관찰 가능성 데이터는 클라이언트와 서버 간의 추적을 연결하여 의미 있는 통찰력을 제공하고 애플리케이션 성능에 대한 포괄적인 보기를 생성할 수 있습니다.
OpenTelemetry는 소프트웨어의 성능과 동작을 이해하기 위해 분석용 원격 측정 데이터(메트릭, 로그 및 추적)를 계측, 생성, 수집 및 내보내는 데 사용되는 도구, API 및 SDK 모음입니다.
OTeL에 대해 더 자세히 알아보고 싶다면 최근 기사인 OpenTelemetry란 무엇이며 왜 관심을 가져야 할까요?를 확인하세요.
브라우저 앱과 관련하여 OpenTelemetry는 다음에 대한 귀중한 통찰력을 제공할 수 있습니다.
이러한 통찰력을 통해 개발자는 병목 현상을 식별하고, 사용자 상호 작용을 추적하고, 수동 계측 없이 네트워크 요청을 모니터링할 수 있습니다. 위에서 언급한 내용은 OTeL의 자동 계측을 활용하여 상대적으로 쉽게 얻을 수 있는 데이터이지만 수동 계측을 추가하여 클라이언트 측 앱의 다른 코드에 대한 추적을 수집할 수도 있습니다.
Highlight의 JavaScript SDK는 클라이언트 측 애플리케이션에서 OpenTelemetry 데이터를 수집하기 위한 기본 지원을 제공합니다. 이러한 통합을 통해 OpenTelemetry 추적을 웹 애플리케이션에 원활하게 통합할 수 있습니다.
OTeL 데이터 수집은 아직 베타 버전이므로 SDK를 초기화할 때 활성화OtelTracing 구성 옵션을 설정하여 이를 명시적으로 활성화해야 합니다.
H.init({ // ... enableOtelTracing: true })
이 간단한 구성을 통해 하이라이트는 자동 계측을 활용하고 몇 가지 추가 처리를 수행하여 하이라이트에서 데이터를 더욱 유용하게 만들어 필요한 대부분의 OpenTelemetry 데이터를 자동으로 수집합니다.
OpenTelemetry의 가장 강력한 기능 중 하나는 다양한 서비스와 환경에서 추적을 연결하는 기능입니다. 하이라이트의 SDK는 컨텍스트 전파를 통해 이를 촉진하므로 브라우저의 사용자 상호 작용부터 백엔드 서비스까지 포괄하는 엔드투엔드 추적을 생성할 수 있습니다.
작동 방식은 다음과 같습니다.
클라이언트와 서버 추적 간의 이러한 연결은 엔드 투 엔드 가시성을 제공하며 페이지 속도 통찰력 및 클라이언트/서버 오류 상관 관계에 필요한 링크입니다.
HTML이 브라우저로 전송되기 전에 서버에서 코드가 실행되는 서버 측 렌더링의 경우 추적 컨텍스트는 HTML에 추가되는 태그입니다.
실제 작동 방식을 보여주는 간단한 예는 다음과 같습니다.
결과는 브라우저의 초기 사용자 상호 작용부터 백엔드 서비스를 거쳐 클라이언트로 돌아가는 요청의 전체 여정을 보여주는 단일 추적입니다.
클라이언트와 서버 추적 간의 이러한 연결은 다음과 같은 여러 이점을 제공합니다.
By leveraging Highlight's OpenTelemetry integration, you can gain these insights with minimal configuration, allowing you to focus on improving your application's performance and user experience.
When a request for a page is made by fetching a new URL in the browser we don't have the JS SDK initialized in the browser until the server returns the HTML and renders the page, then fetches all the JS assets to render the app. In this case you pass the trace ID from the server to the client in a tag to handoff the trace initiated on the server to the client.
Here is an example of what the meta tag looks like in the browser:
<meta name="traceparent" content="00-ab42124a3c573678d4d8b21ba52df3bf-d21f7bc17caa5aba-01" >
Note that the Highlight server SDKs often have helpers to create this tag. Here's an example using the Highlight Ruby SDK
<%= highlight_traceparent_meta %>
The browser OTeL instrumentation gathers timing information from window.performance.timing and creates spans for all the different timing events in the browser. This instrumentation parses the tag and associates all the spans it creates with trace data from the tag. This is illustrated in the screenshot of the flame graph below.
Here's how to parse what's going on in this flame graph:
These resource timings provide a full picture of your app's load time, making it clear where the opportunities are to improve performance and provide a better UX.
Collecting OpenTelemetry data is one thing, but gleaning actionable insights is another. You need some way of visualizing the data (like the flame graph shown above) in order to get actionable insights. Highlight exposes this data a few ways.
When you open Highlight's UI, you'll find a dedicated section for traces. Here, you can see a list of all the traces collected from your application, including those that span from the browser to your backend services.
Trace List: This view provides an overview of all traces, typically sorted by timestamp. You can filter and search for specific traces based on various criteria such as duration, error status, or custom attributes.
Trace Detail View: Clicking on a specific trace opens a detailed view, showing the full journey of a request or user interaction. This view includes:
Cross-Service Tracing: For traces that span from the browser to your backend services, you'll see a seamless view of the entire request lifecycle. This makes it easy to identify whether performance issues are occurring on the client-side, server-side, or in the network communication between them.
Highlight's metrics product provides powerful tools for analyzing resource timings and Web Vitals, which are crucial for understanding and optimizing your application's performance.
리소스 타이밍 대시보드: 이 대시보드는 웹 페이지에 다양한 리소스를 로드하는 데 걸리는 시간에 대한 개요를 제공합니다. 다음을 볼 수 있습니다:
웹 바이탈 지표: 트랙을 강조 표시하고 다음을 포함한 주요 웹 바이탈 지표를 표시합니다.
실적 추세: 하이라이트를 사용하면 시간 경과에 따른 이러한 측정항목을 추적하여 다음을 식별하는 데 도움이 됩니다.
세분화 및 필터링: 다음과 같은 다양한 요소를 기반으로 이러한 측정항목을 분류하고 필터링할 수 있습니다.
상세한 추적 데이터를 이러한 높은 수준의 성능 지표와 결합하면 애플리케이션 성능을 포괄적으로 볼 수 있습니다. 이를 통해 신속하게 문제를 식별하고 근본 원인을 이해하며 최적화 노력의 영향을 측정할 수 있습니다.
OpenTelemetry는 브라우저 애플리케이션을 모니터링하고 최적화하기 위한 강력한 도구를 제공합니다. 개발자는 하이라이트의 OpenTelemetry 통합을 활용하여 최소한의 구성으로 실행 가능한 통찰력을 얻을 수 있습니다.
클라이언트측 성능 문제, 서버측 병목 현상 또는 여러 서비스에 걸친 복잡한 사용자 여정을 처리하는 경우 OpenTelemetry 및 하이라이트는 뛰어난 웹 애플리케이션을 제공하는 데 필요한 가시성을 제공합니다.
위 내용은 OpenTelemetry로 브라우저 애플리케이션 모니터링의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!