Skip to content

Commit e11348b

Browse files
Nginx version update for otel webserver agent (#436)
1 parent b756753 commit e11348b

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

instrumentation/otel-webserver-module/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ARG LOG4CXX_VERSION="0.11.0"
2424
ARG GTEST_VERSION="1.10.0"
2525
ARG AUTOMAKE_VERSION="1.16.3"
2626
ARG PCRE_VERSION="8.44"
27-
ARG NGINX_VERSION="1.24.0"
27+
ARG NGINX_VERSION="1.26.0"
2828

2929

3030
# create default non-root user
@@ -273,7 +273,7 @@ RUN cd /otel-webserver-module/build \
273273
&& cd /
274274

275275
RUN cp /otel-webserver-module/conf/nginx/opentelemetry_module.conf /opt/ \
276-
&& sed -i '8i load_module /opt/opentelemetry-webserver-sdk/WebServerModule/Nginx/1.24.0/ngx_http_opentelemetry_module.so;' /etc/nginx/nginx.conf \
276+
&& sed -i '8i load_module /opt/opentelemetry-webserver-sdk/WebServerModule/Nginx/1.26.0/ngx_http_opentelemetry_module.so;' /etc/nginx/nginx.conf \
277277
&& sed -i '33i include /opt/opentelemetry_module.conf;' /etc/nginx/nginx.conf \
278278
&& cd /
279279

instrumentation/otel-webserver-module/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ Currently, Nginx Webserver module monitores some fixed set of modules, which get
150150

151151
| Library | Present Version |
152152
| ---------------------------------------------- | ----------- |
153-
| Nginx | 1.24.0, 1.25.3 |
153+
| Nginx | 1.26.0, 1.25.5 |
154154
| Apr | 1.7.0 |
155155
| Apr-util | 1.6.1 |
156156

@@ -191,7 +191,7 @@ Currently, Nginx Webserver module monitores some fixed set of modules, which get
191191
- Docker Desktop should be installed on the system
192192

193193
#### Platform Supported
194-
- Supports both stable(1.24.0) and mainline(1.25.3).
194+
- Supports both stable(1.26.0) and mainline(1.25.5).
195195
- Earlier support of v1.18.0 is deprecated.
196196
- The build is supported for **x86-64** platforms.
197197
- OS support: **Centos6**, **Centos7, ubuntu20.04**.

instrumentation/otel-webserver-module/codeql-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ APRUTIL_VERSION="1.6.1"
3636
LOG4CXX_VERSION="0.11.0"
3737
GTEST_VERSION="1.10.0"
3838
PCRE_VERSION="8.44"
39-
NGINX_VERSION="1.24.0"
39+
NGINX_VERSION="1.26.0"
4040

4141
# Install GRPC
4242
git clone --shallow-submodules --depth 1 --recurse-submodules -b v${GRPC_VERSION} \

instrumentation/otel-webserver-module/docker/centos7/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ ARG AUTOMAKE_VERSION="1.16.3"
2626
ARG PERL_VERSION="5.20.2"
2727
ARG PERL_CPANVERSION="5.0"
2828
ARG PCRE_VERSION="8.44"
29-
ARG NGINX_VERSION="1.24.0"
29+
ARG NGINX_VERSION="1.26.0"
3030

3131
# create default non-root user
3232
RUN groupadd -r swuser && useradd -u 1000 -g swuser -m -s /sbin/nologin -c "default non-root user" swuser
@@ -290,7 +290,7 @@ RUN cd /otel-webserver-module/build \
290290
&& cd /
291291

292292
RUN cp /otel-webserver-module/conf/nginx/opentelemetry_module.conf /opt/ \
293-
&& sed -i '8i load_module /opt/opentelemetry-webserver-sdk/WebServerModule/Nginx/1.24.0/ngx_http_opentelemetry_module.so;' /etc/nginx/nginx.conf \
293+
&& sed -i '8i load_module /opt/opentelemetry-webserver-sdk/WebServerModule/Nginx/1.26.0/ngx_http_opentelemetry_module.so;' /etc/nginx/nginx.conf \
294294
&& sed -i '33i include /opt/opentelemetry_module.conf;' /etc/nginx/nginx.conf \
295295
&& cd /
296296

instrumentation/otel-webserver-module/docker/ubuntu20.04/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ ARG APRUTIL_VERSION="1.6.1"
3838
ARG LOG4CXX_VERSION="0.11.0"
3939
ARG GTEST_VERSION="1.10.0"
4040
ARG PCRE_VERSION="8.44"
41-
ARG NGINX_VERSION="1.24.0"
41+
ARG NGINX_VERSION="1.26.0"
4242

4343
# Install GRPC
4444
RUN git clone --shallow-submodules --depth 1 --recurse-submodules -b v${GRPC_VERSION} \
@@ -213,7 +213,7 @@ RUN cd /otel-webserver-module/build \
213213

214214
RUN cd /otel-webserver-module/build \
215215
&& cp ../conf/nginx/opentelemetry_module.conf /opt/ \
216-
&& sed -i '5i load_module /opt/opentelemetry-webserver-sdk/WebServerModule/Nginx/1.24.0/ngx_http_opentelemetry_module.so;' /etc/nginx/nginx.conf \
216+
&& sed -i '5i load_module /opt/opentelemetry-webserver-sdk/WebServerModule/Nginx/1.26.0/ngx_http_opentelemetry_module.so;' /etc/nginx/nginx.conf \
217217
&& sed -i '33i include /opt/opentelemetry_module.conf;' /etc/nginx/nginx.conf \
218218
&& cd /opt/opentelemetry-webserver-sdk \
219219
&& ./install.sh \
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
server-module-version=1.0.3
22
release=GA
3-
nginxSupportedVersions=1.24.0,1.25.3
3+
nginxSupportedVersions=1.26.0,1.25.5
44
CPP-SDK-version=1.2.0

0 commit comments

Comments
 (0)