https://github.com/opentelemetry-php/contrib-auto-slim
[READONLY] OpenTelemetry Slim Framework auto instrumentation
https://github.com/opentelemetry-php/contrib-auto-slim
Last synced: 3 months ago
JSON representation
[READONLY] OpenTelemetry Slim Framework auto instrumentation
- Host: GitHub
- URL: https://github.com/opentelemetry-php/contrib-auto-slim
- Owner: opentelemetry-php
- Created: 2022-11-10T20:56:33.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-05-20T01:41:33.000Z (about 1 year ago)
- Last Synced: 2025-07-14T16:44:10.436Z (12 months ago)
- Language: PHP
- Size: 33.2 KB
- Stars: 3
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://github.com/opentelemetry-php/contrib-auto-slim/releases)
[](https://github.com/open-telemetry/opentelemetry-php/issues)
[](https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/Slim)
[](https://github.com/opentelemetry-php/contrib-auto-slim)
[](https://packagist.org/packages/open-telemetry/opentelemetry-auto-slim/)
[](https://packagist.org/packages/open-telemetry/opentelemetry-auto-slim/)
This is a read-only subtree split of https://github.com/open-telemetry/opentelemetry-php-contrib.
# OpenTelemetry Slim Framework auto-instrumentation
Please read https://opentelemetry.io/docs/instrumentation/php/automatic/ for instructions on how to
install and configure the extension and SDK.
## Overview
Auto-instrumentation hooks are registered via composer, and spans will automatically be created for:
- `App::handle()` - root span
- `InvocationStrategyInterface` - controller/action
- `RoutingMiddleware::performRouting` - update root span's name with either route name or pattern
## Configuration
The extension can be disabled via [runtime configuration](https://opentelemetry.io/docs/instrumentation/php/sdk/#configuration):
```shell
OTEL_PHP_DISABLED_INSTRUMENTATIONS=slim
```