From 4a43969da91e699e21e9f15d2133e44187450fce Mon Sep 17 00:00:00 2001 From: loks0n <22452787+loks0n@users.noreply.github.com> Date: Thu, 9 Apr 2026 19:53:20 +0100 Subject: [PATCH] fix: use consistent dot notation for all storage span attribute names Co-Authored-By: Claude Sonnet 4.6 --- .../Modules/Storage/Http/Buckets/Files/Preview/Get.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Appwrite/Platform/Modules/Storage/Http/Buckets/Files/Preview/Get.php b/src/Appwrite/Platform/Modules/Storage/Http/Buckets/Files/Preview/Get.php index 47f4c58488..f0ee045214 100644 --- a/src/Appwrite/Platform/Modules/Storage/Http/Buckets/Files/Preview/Get.php +++ b/src/Appwrite/Platform/Modules/Storage/Http/Buckets/Files/Preview/Get.php @@ -271,9 +271,9 @@ class Get extends Action Span::add('storage.file.id', $file->getId()); Span::add('storage.bucket.id', $bucketId); - Span::add('storage.file_size_bytes', $file->getAttribute('sizeActual')); + Span::add('storage.file.size_bytes', $file->getAttribute('sizeActual')); if (!empty($type)) { - Span::add('storage.file_extension', $type); + Span::add('storage.file.extension', $type); } Span::add('storage.timing.download_seconds', $downloadTime); Span::add('storage.timing.decryption_seconds', $decryptionTime);