nginx-otel

所属分类:Linux/Unix编程
开发工具:Perl
文件大小:0KB
下载次数:0
上传日期:2023-08-21 20:51:06
上 传 者sh-1993
说明:  nginx酒店,,
(nginx-otel,,)

文件列表:
CMakeLists.txt (4598, 2023-12-26)
CODE_OF_CONDUCT.md (3344, 2023-12-26)
CONTRIBUTING.md (2764, 2023-12-26)
LICENSE (10173, 2023-12-26)
NOTICE (604, 2023-12-26)
SECURITY.md (853, 2023-12-26)
config (403, 2023-12-26)
config.make (130, 2023-12-26)
src/ (0, 2023-12-26)
src/batch_exporter.hpp (6259, 2023-12-26)
src/http_module.cpp (23255, 2023-12-26)
src/modules.c (213, 2023-12-26)
src/str_view.hpp (219, 2023-12-26)
src/trace_context.hpp (2376, 2023-12-26)
src/trace_service_client.hpp (3018, 2023-12-26)
tests/ (0, 2023-12-26)
tests/h2_otel.t (18008, 2023-12-26)
tests/h3_otel.t (16019, 2023-12-26)
tests/otel.t (16763, 2023-12-26)
tests/otel_collector.t (14049, 2023-12-26)

# NGINX Native OpenTelemetry (OTel) Module ## What is OpenTelemetry OpenTelemetry (OTel) is an observability framework for monitoring, tracing, troubleshooting, and optimizing applications. OTel enables the collection of telemetry data from a deployed application stack. ## What is the NGINX Native OTel Module The `ngx_otel_module` dynamic module enables NGINX Open Source or NGINX Plus to send telemetry data to an OTel collector. It provides support for [W3C trace context](https://www.w3.org/TR/trace-context/) propagation, OpenTelemetry Protocol (OTLP)/gRPC trace exports and offers several benefits over exiting OTel modules, including: ### Better Performance ### 3rd-party OTel implementations reduce performance of request processing by as much as 50% when tracing is enabled. The NGINX Native module limits this impact to approximately 10-15%. ### Easy Provisioning ### Setup and configuration can be done right in NGINX configuration files. ### Dynamic, Variable-Based Control ### The ability to control trace parameters dynamically using cookies, tokens, and variables. Please see our [Ratio-based Tracing](#ratio-based-tracing) example for more details. Additionally, [NGINX Plus](https://www.nginx.com/products/nginx/), available as part of a [commercial subscription](https://www.nginx.com/products/), enables dynamic control of sampling parameters via the [NGINX Plus API](http://nginx.org/en/docs/http/ngx_http_api_module.html) and [key-value store](http://nginx.org/en/docs/http/ngx_http_keyval_module.html) modules. ## Installing Prebuilt packages of the module are available for easy installation. Follow these steps to install NGINX Open Source with the OTel module. See list of [compatible operating systems](https://nginx.org/en/linux_packages.html#distributions). ### Adding Package Repositories and Installing NGINX Open Source Follow the official NGINX Open Source [installation steps](https://nginx.org/en/linux_packages.html#instructions) to set up package repositories for your specific operating system and install NGINX. **Important:** To ensure module compatibility, you must use officially distributed NGINX binaries. Compatibility with community distributed binaries, commonly available through various operating system vendors, is not guaranteed. ### Installing the OTel Module from Packages Once remote package repositories have been added and local package records have been updated, you may install the OTel module (`nginx-module-otel`) for your specific operating system. As an example, run the following commands to install on: #### RedHat, RHEL and Derivatives ```bash sudo yum install nginx-module-otel ``` #### Debian, Ubuntu and derivatives ```bash sudo apt install nginx-module-otel ``` ### Enabling the OTel Module Following the installation steps above will install the module into `/etc/nginx/modules` by default. Load the module by adding the following line to the top of the main NGINX configuration file, located at `/etc/nginx/nginx.conf`. ```nginx load_module modules/ngx_otel_module.so; ``` ## Configuring the Module For a complete list of directives, embedded variables, default span attributes and sample configurations, please refer to the [`ngx_otel_module` documentation](https://nginx.org/en/docs/ngx_otel_module.html). ## Examples Use these examples to configure some common use-cases for OTel tracing. ### Simple Tracing This example sends telemetry data for all http requests. ```nginx http { otel_exporter { endpoint localhost:4317; } otel_trace on; server { location / { proxy_pass http://backend; } } } ``` ### Parent-based Tracing In this example, we inherit trace contexts from incoming requests and record spans only if a parent span is sampled. We also propagate trace contexts and sampling decisions to upstream servers. ```nginx http { server { location / { otel_trace $otel_parent_sampled; otel_trace_context propagate; proxy_pass http://backend; } } } ``` ### Ratio-based Tracing In this ratio-based example, tracing is configured for a percentage of traffic (in this case 10%): ```nginx http { # trace 10% of requests split_clients $otel_trace_id $ratio_sampler { 10% on; * off; } # or we can trace 10% of user sessions split_clients $cookie_sessionid $session_sampler { 10% on; * off; } server { location / { otel_trace $ratio_sampler; otel_trace_context inject; proxy_pass http://backend; } } } ``` ## Collecting and Viewing Traces There are several methods and available software packages for viewing traces. For a quick start, [Jaeger](https://www.jaegertracing.io/) provides an all-in-one container to collect, process and view OTel trace data. Follow [these steps](https://www.jaegertracing.io/docs/next-release/deployment/#all-in-one) to download, install, launch and use Jaeger's OTel services. ## Building Follow these steps to build the `ngx_otel_module` dynamic module on Ubuntu or Debian based systems: Install build tools and dependencies. ```bash sudo apt install cmake build-essential libssl-dev zlib1g-dev libpcre3-dev sudo apt install pkg-config libc-ares-dev libre2-dev # for gRPC ``` For the next step, you will need the `configure` script that is packaged with the NGINX source code. There are several methods for obtaining NGINX sources. You may choose to [download](http://hg.nginx.org/nginx/archive/tip.tar.gz) them or clone them directly from the [NGINX Github repository](https://github.com/nginx/nginx). **Important:** To ensure compatibility, the `ngx_otel_module` and the NGINX binary that it will be used with, will need to be built using the same NGINX source code and operating system. We will build and install NGINX from obtained sources in a later step. When obtaining NGINX sources from Github, please ensure that you switch to the branch that you intend to use with the module binary. For simplicity, we will assume that the `main` branch will be used for the remainder of this tutorial. ```bash git clone https://github.com/nginx/nginx.git ``` Configure NGINX to generate files necessary for dynamic module compilation. These files will be placed into the `nginx/objs` directory. **Important:** If you did not obtain NGINX source code via the clone method in the previous step, you will need to adjust paths in the following commands to conform to your specific directory structure. ```bash cd nginx auto/configure --with-compat ``` Exit the NGINX directory and clone the `ngx_otel_module` repository. ```bash cd .. git clone https://github.com/nginxinc/nginx-otel.git ``` Configure and build the NGINX OTel module. **Important**: replace the path in the `cmake` command with the path to the `nginx/objs` directory from above. ```bash cd nginx-otel mkdir build cd build cmake -DNGX_OTEL_NGINX_BUILD_DIR=/path/to/configured/nginx/objs .. make ``` Compilation will produce a binary named `ngx_otel_module.so`. ## Installing from Built Binaries ***Important:*** The built `ngx_otel_module.so` dynamic module binary will ONLY be compatible with the same version of NGINX source code that was used to build it. To guarantee proper operation, you will need to build and install NGINX from sources obtained in previous steps on the same operating system. Follow [instructions](https://docs.nginx.com/nginx/admin-guide/installing-nginx/installing-nginx-open-source/#compiling-and-installing-from-source) related to compiling and installing NGINX. Skip procedures for downloading source code. By default, this will install NGINX into `/usr/local/nginx`. The following steps assume this directory structure. Copy the `ngx_otel_module.so` dynamic module binary to `/usr/local/nginx/modules`. Load the module by adding the following line to the top of the main NGINX configuration file, located at `/usr/local/nginx/conf/nginx.conf`. ```nginx load_module modules/ngx_otel_module.so; ``` # Community - Our Slack channel [#nginx-opentelemetry-module](https://nginxcommunity.slack.com/archives/C05NMNAQDU6), is the go-to place to start asking questions and sharing your thoughts. - Our [GitHub issues page](https://github.com/nginxinc/nginx-otel/issues) offers space for a more technical discussion at your own pace. # Contributing Get involved with the project by contributing! Please see our [contributing guide](CONTRIBUTING.md) for details. # Change Log See our [release page](https://github.com/nginxinc/nginx-otel/releases) to keep track of updates. # License [Apache License, Version 2.0](https://github.com/nginxinc/nginx-otel/blob/main/LICENSE) © [F5, Inc.](https://www.f5.com/) 2023

近期下载者

相关文件


收藏者