• Stars
    star
    123
  • Rank 281,141 (Top 6 %)
  • Language
    Perl
  • License
    Apache License 2.0
  • Created 12 months ago
  • Updated about 1 month ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

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 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 example for more details.

Additionally, NGINX Plus, available as part of a commercial subscription, enables dynamic control of sampling parameters via the NGINX Plus API and key-value store 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.

Adding Package Repositories and Installing NGINX Open Source

Follow the official NGINX Open Source installation steps 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

sudo yum install nginx-module-otel

Debian, Ubuntu and derivatives

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.

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.

Examples

Use these examples to configure some common use-cases for OTel tracing.

Simple Tracing

This example sends telemetry data for all http requests.

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.

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%):

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 provides an all-in-one container to collect, process and view OTel trace data. Follow these steps 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.

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 them or clone them directly from the NGINX Github repository.

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.

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.

cd nginx
auto/configure --with-compat

Exit the NGINX directory and clone the ngx_otel_module repository.

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.

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 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.

load_module modules/ngx_otel_module.so;

Community

Contributing

Get involved with the project by contributing! Please see our contributing guide for details.

Change Log

See our release page to keep track of updates.

License

Apache License, Version 2.0

Β© F5, Inc. 2023

More Repositories

1

kubernetes-ingress

NGINX and NGINX Plus Ingress Controllers for Kubernetes
Go
4,540
star
2

docker-nginx

Official NGINX Dockerfiles
Shell
3,076
star
3

nginx-prometheus-exporter

NGINX Prometheus Exporter for NGINX and NGINX Plus
Go
1,441
star
4

NGINX-Demos

NGINX and NGINX Plus demos
HTML
1,232
star
5

nginx-ldap-auth

Example of LDAP authentication using ngx_http_auth_request_module
Python
678
star
6

kic-reference-architectures

MARA: Modern Application Reference Architecture
Python
625
star
7

crossplane

Quick and reliable way to convert NGINX configurations into JSON and back.
Python
620
star
8

nginmesh

Istio compatible service mesh using NGINX
Go
611
star
9

ansible-role-nginx

Ansible role for installing NGINX
Shell
604
star
10

nginx-s3-gateway

NGINX S3 Caching Gateway
JavaScript
442
star
11

ngx-rust

Rust binding for NGINX
Rust
377
star
12

nginx-gateway-fabric

NGINX Gateway Fabric provides an implementation for the Gateway API using NGINX as the data plane.
Go
361
star
13

docker-nginx-unprivileged

Unprivileged NGINX Dockerfiles
Shell
352
star
14

nginx-wiki

ARCHIVED -- Source for the now archived NGINX Wiki section of https://www.nginx.com
HTML
286
star
15

docker-nginx-amplify

Official NGINX and Amplify Dockerfiles
Shell
230
star
16

nginx-amplify-doc

Public documentation for Amplify
Makefile
201
star
17

nginx-openid-connect

Reference implementation of OpenID Connect integration for NGINX Plus
JavaScript
188
star
18

mra-ingenious

A photo-sharing app built by NGINX and implemented using the Fabric Model from the Microservices Reference Architecture.
JavaScript
143
star
19

ansible-role-nginx-config

Ansible role for configuring NGINX
Jinja
139
star
20

rtapi

Real time API latency analyzer - Create a PDF report and HDR histogram of your APIs
Go
133
star
21

nginx-service-mesh

A service mesh powered by NGINX Plus to manage container traffic in Kubernetes environments.
Go
93
star
22

nginx-ingress-operator

WARNING - DEPRECATION NOTICE: The NGINX Ingress Operator has been updated to be a Helm based operator. This repo has been deprecated and will soon be archived - the new NGINX Ingress Operator repo can be found at https://github.com/nginxinc/nginx-ingress-helm-operator.
Go
65
star
23

ansible-collection-nginx

Ansible collection for NGINX
63
star
24

nginx-loadbalancer-kubernetes

A Kubernetes Controller to synchronize NGINX+ Resources with Kubernetes Ingress Resources
Go
57
star
25

nginx-asg-sync

NGINX Plus Integration with Cloud Autoscaling
Go
53
star
26

bank-of-sirius

Bank of Sirius
Java
52
star
27

nginx-plus-go-client

A client for NGINX Plus API for Go
Go
47
star
28

helm-charts

NGINX Helm Charts repository
47
star
29

nginx-openshift-router

NGINX and NGINX Plus OpenShift Routers
HTML
42
star
30

nginx-ingress-helm-operator

NGINX Ingress Operator for NGINX and NGINX Plus Ingress Controllers. Based on the Helm chart for NGINX Ingress Controller - https://github.com/nginxinc/helm-charts
Mustache
33
star
31

nginx-go-crossplane

A library for working with NGINX configs in Go
Go
31
star
32

docker-nginx-controller

Docker support for NGINX Controller Agent in Containers
Dockerfile
29
star
33

microservices-march

Examples from the Microservices March lectures and exercises.
26
star
34

nginx-ingress-workshops

Nginx Ingress Controller Hands on Workshops, with Lab Exercises and Guides
Shell
26
star
35

ngx-istio-mixer

NGINX module for Istio mixer
Rust
24
star
36

new-relic-agent

A new relic agent for NGINX Plus metrics
Python
23
star
37

nginx-saml

Perl
19
star
38

router-mesh-architecture

NGINX Router Mesh Network Architecture for Microservices
CSS
19
star
39

aws-ha-elastic-ip

Active-Passive HA Deployment on AWS Using an Elastic IP Address
Shell
17
star
40

ansible-role-nginx-app-protect

Ansible role to install and configure NGINX App Protect (WAF and DoS) for NGINX Plus on your target host
Jinja
16
star
41

website-resources-conf

content for nginx.com/resources/conf/ -- configuration files shared in blog posts, etc.
16
star
42

nginx-plus-dashboard

HTML
15
star
43

fabric-model-architecture

Repository for the NGINX Fabric Model Architecture
CSS
15
star
44

ngxinfo

Python
13
star
45

nginx-management-suite-iac

NMS IAC repo
HCL
12
star
46

Community-Code-of-Conduct

NGINX Open Source Community's Code of Conduct
11
star
47

nginx-amplify-agent

NGINX Amplify Agent
Python
11
star
48

mra-user-manager

User manager
HTML
10
star
49

snarejs

Snare.js
JavaScript
10
star
50

nginx-ns1-gslb

ARCHIVED - NGINX Plus Integration with NS1 GSLB
Go
10
star
51

mra-auth-proxy

Auth proxy for MRA
Jinja
9
star
52

nginx-wrapper

NGINX Event Process Wrapper
Go
9
star
53

ngx-stream-nginmesh-dest

Nginx module to get dest ip and port
C
8
star
54

ansible-role-nginx-unit

Ansible role for NGINX Unit
Jinja
7
star
55

ansible-role-nginx-management-suite

Ansible role for the NGINX Management Suite
Jinja
7
star
56

nginx-for-azure-deploy-action

Github Actions to sync NGINX configs into the NGINX for Azure service.
TypeScript
7
star
57

ebook-managing-kubernetes-nginx

Shell
7
star
58

template-repository

A template repository for new NGINX projects
7
star
59

nginx-unsupported-modules

Container builds of unsupported NGINX modules
Shell
6
star
60

nginx-hugo-theme

A hugo theme for NGINX documentation
CSS
6
star
61

mra-content-service

Go
6
star
62

mra-photouploader

HTML
5
star
63

ansible_collection_nginx_controller

Collection of NGINX Controller Roles for Ansible
5
star
64

mra-photoresizer

HTML
5
star
65

mra-pages

JavaScript
4
star
66

nginx-controller-lab

Shell
4
star
67

.github

4
star
68

mra-album-manager

Ruby
4
star
69

nginxaas-for-azure-snippets

Example ARM templates for common NGINX for Azure use cases
Python
3
star
70

ansible_role_nginx_controller_agent

Ansible role for installing the NGINX Controller agent
Jinja
3
star
71

ansible-role-nginx_controller_application

Jinja
3
star
72

nap-dos-arbitrator-helm-chart

Smarty
3
star
73

nginx-plus-install-tools

NGINX Plus Install tools
Shell
3
star
74

ansible-role-nginx_controller_publish_api

Jinja
2
star
75

kic-test-containers

Docker containers used by the KIC team
Go
2
star
76

ansible-role-nginx_controller_user

Jinja
2
star
77

ansible-role-nginx_controller_environment

Managing environments within NGINX Controller
Jinja
2
star
78

ansible-role-nginx_controller_api_definition_import

Jinja
2
star
79

ansible-role-nginx-controller-gateway

Jinja
2
star
80

ansible-role-nginx_controller_location

Jinja
2
star
81

ansible_role_nginx_controller_install

Ansible role for installing NGINX Controller
Jinja
2
star
82

ansible-role-nginx-controller-certificate

Jinja
2
star
83

ansible_role_nginx_controller_generate_token

Jinja
2
star
84

ansible-role-nginx-controller-component

Jinja
2
star
85

ansible-role-nginx-controller-license

Jinja
2
star
86

ansible-role-nginx_controller_integration

Jinja
2
star
87

nginx-aws-signature

NGINX AWS Signature Library to authenticate AWS services such as S3 and Lambda via NGINX and NGINX Plus.
JavaScript
2
star
88

nginx-basics-workshops

HTML
2
star
89

homebrew-tap

Ruby
1
star
90

ansible-role-nginx_controller_user_role

Jinja
1
star
91

ansible-role-nginx_controller_forwarder

Jinja
1
star