Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump dependecies for WordPress example #319

Merged
merged 1 commit into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
}
}
}
Loading