LCOV - code coverage report
Current view: top level - pageserver/src - span.rs (source / functions) Coverage Total Hit
Test: 2620485e474b48c32427149a5d91ef8fc2cd649e.info Lines: 73.1 % 26 19
Test Date: 2025-05-01 22:50:11 Functions: 100.0 % 3 3

            Line data    Source code
       1              : use utils::tracing_span_assert::check_fields_present;
       2              : 
       3              : mod extractors {
       4              :     use utils::tracing_span_assert::ConstExtractor;
       5              : 
       6              :     pub(super) const TENANT_ID: ConstExtractor = ConstExtractor::new("tenant_id");
       7              :     pub(super) const SHARD_ID: ConstExtractor = ConstExtractor::new("shard_id");
       8              :     pub(super) const TIMELINE_ID: ConstExtractor = ConstExtractor::new("timeline_id");
       9              : }
      10              : 
      11              : #[track_caller]
      12         4536 : pub(crate) fn debug_assert_current_span_has_tenant_id() {
      13         4536 :     if cfg!(debug_assertions) {
      14         4536 :         if let Err(missing) = check_fields_present!([&extractors::TENANT_ID, &extractors::SHARD_ID])
      15              :         {
      16            0 :             panic!("missing extractors: {missing:?}")
      17         4536 :         }
      18            0 :     }
      19         4536 : }
      20              : 
      21              : #[track_caller]
      22       118092 : pub(crate) fn debug_assert_current_span_has_tenant_and_timeline_id() {
      23       118092 :     if cfg!(debug_assertions) {
      24       118092 :         if let Err(missing) = check_fields_present!([
      25       118092 :             &extractors::TENANT_ID,
      26       118092 :             &extractors::SHARD_ID,
      27       118092 :             &extractors::TIMELINE_ID,
      28       118092 :         ]) {
      29            0 :             panic!("missing extractors: {missing:?}")
      30       118092 :         }
      31            0 :     }
      32       118092 : }
      33              : 
      34              : #[track_caller]
      35           84 : pub(crate) fn debug_assert_current_span_has_tenant_and_timeline_id_no_shard_id() {
      36           84 :     if cfg!(debug_assertions) {
      37            0 :         if let Err(missing) =
      38           84 :             check_fields_present!([&extractors::TENANT_ID, &extractors::TIMELINE_ID,])
      39              :         {
      40            0 :             panic!("missing extractors: {missing:?}")
      41           84 :         }
      42            0 :     }
      43           84 : }
        

Generated by: LCOV version 2.1-beta