Basic concepts of Opentelemetry
Opentelemetry
In a world where Distributed Systems and Micro Services are rampant, it has become very difficult to check system operation or track errors. In this environment, many services have to send data in a common format and connect it to analyze the system.
Opentelemetry (hereinafter otel) is a framework created to increase observability in the latest software trends. We provide API, conventions, toolkits, etc.
But even if it is just a single service, it seems to be easier to view logs, and setting it up is not that difficult (as long as you don't do anything strange...), so it's not a bad idea to try it out.
Observability
To understand otel, you need to know Observability.
Although it is difficult to define clearly, I think it can be defined as the ability to answer the question ‘Why did this happen?’
In order to do so, the program must be ‘well instrumented’.
Instrumentation
This is an expression you will encounter a lot when implementing Opentelementry. In Korean, it means 'measurement', but you can think of it as measuring things well and recording them.
For example, there are several signals (also called telemetry data) that are measured, and logs, traces, and metrics belong to these signals. (These signals will appear again later)
Opentelemetry (continued)
Otel is vendor- and tool-agnostic, so it can be used widely. There is no obligation to use observability backends. You can use open sources that meet Otel standards.
To use Otel, you just need to learn a little(?) concepts and API.
Some concepts you need to know about Opentelemetry
You need to learn the elements that make up Otel.
Distributed tracing
Log, Span, Trace
Context propagation
Signals
Collector
Distributed Tracing
This is to track what happens when a request is made in a distributed system. This is something that Otel takes seriously. Distributed System refers to a system in which one request is completed through A service, B service, and C service.
Log, Span, Trace
Log
Log is the same log that we always take while coding. There is a timestamp so it is written at that time. It helps a lot in interpreting system behavior.
However, it is difficult to understand the code from the log itself. More contextual information needs to be included. Log is more useful when it is related to Span or Trace.
Span
Span is a unit of action. The name of a specific operation, time-related data, and logs included in the span have characteristics called span attributes.
For example, it has properties such as http.request.method and url.path.
Trace
The process from the beginning to completion of a request is called a trace. This Trace may include spans from multiple systems, not just one system.
The very first span is called Root Span.
Usually depicted as a waterfall diagram.
Context propagation
Continues to propagate context information so that related Signals and Traces can be connected.
Propagation serializes and deserializes this context information object, allowing it to move between services and processes. In normal cases, the W3C TraceContext Propagator is used.
Signals
Signal is a collection element of Otel. There are a total of 4: Log, Metric, Trace, and Baggage.
Log
This is the log mentioned above. It contains a message taken at a specific time.
Metric
This is data to measure the numbers that need to be measured in the service. For example, these are things that need to be recorded to measure numbers such as how many times something was called and how full the queue was.
Trace
Same as Trace mentioned above.
Baggage
This is information that is propagated like context through a key value store. It mainly stores additional information such as User ID.
Collector
It is called Opentelemetry Collector. Collector is responsible for receiving telemetry data from the application, processing it, and exporting it to the telemetry storage.
It is okay to send telemetry data directly from the application to the storage without a collector, but it is better to run a collector and leave the processing of the telemetry data to the collector, and the application does its own thing.
There are many advantages to using a collector, such as the ability to vary configurations and span tail filtering in the collector.
The above is the detailed content of Basic concepts of Opentelemetry. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Frequently Asked Questions and Solutions for Front-end Thermal Paper Ticket Printing In Front-end Development, Ticket Printing is a common requirement. However, many developers are implementing...

There is no absolute salary for Python and JavaScript developers, depending on skills and industry needs. 1. Python may be paid more in data science and machine learning. 2. JavaScript has great demand in front-end and full-stack development, and its salary is also considerable. 3. Influencing factors include experience, geographical location, company size and specific skills.

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

How to merge array elements with the same ID into one object in JavaScript? When processing data, we often encounter the need to have the same ID...

Learning JavaScript is not difficult, but it is challenging. 1) Understand basic concepts such as variables, data types, functions, etc. 2) Master asynchronous programming and implement it through event loops. 3) Use DOM operations and Promise to handle asynchronous requests. 4) Avoid common mistakes and use debugging techniques. 5) Optimize performance and follow best practices.

Discussion on the realization of parallax scrolling and element animation effects in this article will explore how to achieve similar to Shiseido official website (https://www.shiseido.co.jp/sb/wonderland/)...

In-depth discussion of the root causes of the difference in console.log output. This article will analyze the differences in the output results of console.log function in a piece of code and explain the reasons behind it. �...

The latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.
