Skip to content

Commit

Permalink
Bump WordPress example dependencies (#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
soderlind authored Dec 10, 2024
1 parent f6a567b commit 009f34d
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM composer:2.5 as build
COPY composer.json ./
RUN composer install --ignore-platform-reqs

FROM wordpress:6.2
FROM wordpress:6.7.1
# Install the opentelemetry and protobuf extensions
RUN pecl install opentelemetry protobuf
COPY otel.php.ini $PHP_INI_DIR/conf.d/.
Expand Down
4 changes: 2 additions & 2 deletions examples/instrumentation/Wordpress/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ services:
image: otel/opentelemetry-collector-contrib:0.79.0
volumes:
- ./otel-collector-config.yaml:/etc/otelcol-contrib/config.yaml

jaeger:
image: jaegertracing/all-in-one:1.46
image: jaegertracing/all-in-one
ports:
- 16686:16686
environment:
Expand Down
32 changes: 16 additions & 16 deletions examples/instrumentation/Wordpress/composer.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "opentelemetry/wordpress-example",
"description": "An example of autoinstrumentation of wordpress with the official wordpress docker image",
"type": "project",
"minimum-stability": "beta",
"require": {
"open-telemetry/opentelemetry-auto-wordpress": "^0.0.15",
"open-telemetry/sdk": "^1.0",
"open-telemetry/exporter-otlp": "^1.0",
"php-http/guzzle7-adapter": "^1.0"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}
"name": "opentelemetry/wordpress-example",
"description": "An example of autoinstrumentation of wordpress with the official wordpress docker image",
"type": "project",
"minimum-stability": "beta",
"require": {
"open-telemetry/opentelemetry-auto-wordpress": "^0.0.16",
"open-telemetry/sdk": "^1.1",
"open-telemetry/exporter-otlp": "^1.1",
"php-http/guzzle7-adapter": "^1.1"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}

0 comments on commit 009f34d

Please sign in to comment.