@@ -350,8 +350,8 @@ fn fake_object_store_url(table_location_url: &str) -> ObjectStoreUrl {
350350}
351351
352352#[ allow( clippy:: too_many_arguments) ]
353- #[ instrument( level = "debug" , skip( arrow_schema, statistics, session, filters) , fields(
354- table_location = %table. metadata ( ) . location ,
353+ #[ instrument( name = "datafusion_iceberg::table_scan" , level = "debug" , skip( arrow_schema, statistics, session, filters) , fields(
354+ table_identifier = %table. identifier ( ) ,
355355 snapshot_range = ?snapshot_range,
356356 projection = ?projection,
357357 filter_count = filters. len( ) ,
@@ -1112,6 +1112,10 @@ pub async fn write_parquet_equality_delete_files(
11121112 write_parquet_files ( table, batches, context, Some ( equality_ids) , branch) . await
11131113}
11141114
1115+ #[ instrument( name = "datafusion_iceberg::write_parquet_files" , level = "debug" , skip( table, batches, context) , fields(
1116+ table_identifier = %table. identifier( ) ,
1117+ branch = ?branch
1118+ ) ) ]
11151119async fn write_parquet_files (
11161120 table : & Table ,
11171121 batches : SendableRecordBatchStream ,
0 commit comments