We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5295efc commit 87dde43Copy full SHA for 87dde43
src/LaravelInstrumentation.php
@@ -13,7 +13,11 @@ class LaravelInstrumentation
13
14
public static function register(): void
15
{
16
- $instrumentation = new CachedInstrumentation('io.opentelemetry.contrib.php.laravel');
+ $instrumentation = new CachedInstrumentation(
17
+ 'io.opentelemetry.contrib.php.laravel',
18
+ null,
19
+ 'https://opentelemetry.io/schemas/1.24.0'
20
+ );
21
22
Hooks\Illuminate\Console\Command::hook($instrumentation);
23
Hooks\Illuminate\Contracts\Console\Kernel::hook($instrumentation);
0 commit comments