fix: use consistent dot notation for all storage span attribute names

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
loks0n
2026-04-09 19:53:20 +01:00
parent 6fa4122910
commit 4a43969da9
@@ -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);