@@ -390,7 +390,7 @@ where
390390 self . context ( ) . extra ( ) . chain_id ( )
391391 }
392392
393- #[ instrument( target = "telemetry_only" , skip_all, fields(
393+ #[ instrument( skip_all, fields(
394394 chain_id = %self . chain_id( ) ,
395395 ) ) ]
396396 pub async fn query_application (
@@ -410,7 +410,7 @@ where
410410 . with_execution_context ( ChainExecutionContext :: Query )
411411 }
412412
413- #[ instrument( target = "telemetry_only" , skip_all, fields(
413+ #[ instrument( skip_all, fields(
414414 chain_id = %self . chain_id( ) ,
415415 application_id = %application_id
416416 ) ) ]
@@ -425,7 +425,7 @@ where
425425 . with_execution_context ( ChainExecutionContext :: DescribeApplication )
426426 }
427427
428- #[ instrument( target = "telemetry_only" , skip_all, fields(
428+ #[ instrument( skip_all, fields(
429429 chain_id = %self . chain_id( ) ,
430430 target = %target,
431431 height = %height
@@ -556,7 +556,7 @@ where
556556 /// round timeouts.
557557 ///
558558 /// Returns `true` if incoming `Subscribe` messages created new outbox entries.
559- #[ instrument( target = "telemetry_only" , skip_all, fields(
559+ #[ instrument( skip_all, fields(
560560 chain_id = %self . chain_id( ) ,
561561 origin = %origin,
562562 bundle_height = %bundle. height
@@ -659,7 +659,7 @@ where
659659 /// If `must_be_present` is `true`, an error is returned if any of the bundles have not been
660660 /// added to the inbox yet. So this should be `true` if the bundles are in a block _proposal_,
661661 /// and `false` if the block is already confirmed.
662- #[ instrument( target = "telemetry_only" , skip_all, fields(
662+ #[ instrument( skip_all, fields(
663663 chain_id = %self . chain_id( ) ,
664664 ) ) ]
665665 pub async fn remove_bundles_from_inboxes (
@@ -762,7 +762,7 @@ where
762762
763763 /// Executes a block: first the incoming messages, then the main operation.
764764 /// Does not update chain state other than the execution state.
765- #[ instrument( target = "telemetry_only" , skip_all, fields(
765+ #[ instrument( skip_all, fields(
766766 chain_id = %block. chain_id,
767767 block_height = %block. height
768768 ) ) ]
@@ -887,7 +887,7 @@ where
887887
888888 /// Executes a block: first the incoming messages, then the main operation.
889889 /// Does not update chain state other than the execution state.
890- #[ instrument( target = "telemetry_only" , skip_all, fields(
890+ #[ instrument( skip_all, fields(
891891 chain_id = %self . chain_id( ) ,
892892 block_height = %block. height
893893 ) ) ]
@@ -951,7 +951,7 @@ where
951951 /// Applies an execution outcome to the chain, updating the outboxes, state hash and chain
952952 /// manager. This does not touch the execution state itself, which must be updated separately.
953953 /// Returns the set of event streams that were updated as a result of applying the block.
954- #[ instrument( target = "telemetry_only" , skip_all, fields(
954+ #[ instrument( skip_all, fields(
955955 chain_id = %self . chain_id( ) ,
956956 block_height = %block. inner( ) . inner( ) . header. height
957957 ) ) ]
@@ -989,7 +989,7 @@ where
989989
990990 /// Adds a block to `preprocessed_blocks`, and updates the outboxes where possible.
991991 /// Returns the set of streams that were updated as a result of preprocessing the block.
992- #[ instrument( target = "telemetry_only" , skip_all, fields(
992+ #[ instrument( skip_all, fields(
993993 chain_id = %self . chain_id( ) ,
994994 block_height = %block. inner( ) . inner( ) . header. height
995995 ) ) ]
@@ -1019,7 +1019,7 @@ where
10191019 }
10201020
10211021 /// Verifies that the block is valid according to the chain's application permission settings.
1022- #[ instrument( target = "telemetry_only" , skip_all, fields(
1022+ #[ instrument( skip_all, fields(
10231023 block_height = %block. height,
10241024 num_transactions = %block. transactions. len( )
10251025 ) ) ]
@@ -1065,7 +1065,7 @@ where
10651065 }
10661066
10671067 /// Returns the hashes of all blocks we have in the given range.
1068- #[ instrument( target = "telemetry_only" , skip_all, fields(
1068+ #[ instrument( skip_all, fields(
10691069 chain_id = %self . chain_id( ) ,
10701070 next_block_height = %self . tip_state. get( ) . next_block_height,
10711071 start_height = ?range. start_bound( ) ,
@@ -1123,7 +1123,7 @@ where
11231123 /// Updates the outboxes with the messages sent in the block.
11241124 ///
11251125 /// Returns the set of all recipients.
1126- #[ instrument( target = "telemetry_only" , skip_all, fields(
1126+ #[ instrument( skip_all, fields(
11271127 chain_id = %self . chain_id( ) ,
11281128 block_height = %block. header. height
11291129 ) ) ]
@@ -1218,7 +1218,7 @@ where
12181218 /// Updates the event streams with events emitted by the block if they form a contiguous
12191219 /// sequence (might not be the case when preprocessing a block).
12201220 /// Returns the set of updated event streams.
1221- #[ instrument( target = "telemetry_only" , skip_all, fields(
1221+ #[ instrument( skip_all, fields(
12221222 chain_id = %self . chain_id( ) ,
12231223 block_height = %block. header. height
12241224 ) ) ]
0 commit comments