Skip to main content

nemo_flow/observability/
mod.rs

1// SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2// SPDX-License-Identifier: Apache-2.0
3
4//! Optional observability integrations for NeMo Flow Core.
5
6#[cfg(test)]
7use std::sync::Mutex;
8
9#[cfg(test)]
10pub(crate) fn test_mutex() -> &'static Mutex<()> {
11    crate::shared_runtime::runtime_owner_test_mutex()
12}
13
14pub mod atif;
15pub mod atof;
16#[cfg(feature = "openinference")]
17pub mod openinference;
18#[cfg(feature = "otel")]
19pub mod otel;
20pub mod plugin_component;