(
group_id: &str,
function_id: Option<&str>,
value_str: Option<&str>,
)
| 55 | } |
| 56 | |
| 57 | pub fn setup_subscriber( |
| 58 | group_id: &str, |
| 59 | function_id: Option<&str>, |
| 60 | value_str: Option<&str>, |
| 61 | ) -> impl Drop { |
| 62 | TelemetryRegistry::default() |
| 63 | .with_flamegraph(Path::new("out").join(generate_path(group_id, function_id, value_str))) |
| 64 | .init() |
| 65 | .expect("Failed to initialize tracing") |
| 66 | } |
| 67 | |
| 68 | impl StoreWrapper { |
| 69 | #[expect(clippy::too_many_lines)] |
no test coverage detected