Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 439 Bytes

UPGRADE.md

File metadata and controls

17 lines (12 loc) · 439 Bytes

Upgrade Guide

Upgrading To 0.5 From 0.4.x

Configuration Changes

The telemetry.enabled configuration key has been moved and negated to sdk.disabled to match the underlying OpenTelemetry SDK.

Please update this value in your configuration if it has been published.

-    'enabled' => env('LARAVEL_TELEMETRY_ENABLED', true),
+    'sdk' => [
+        'disabled' => ! env('LARAVEL_TELEMETRY_ENABLED', true)
+    ],