For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
  • About NVIDIA NeMo Relay
    • Overview
    • Architecture
    • Ecosystem
    • Concepts
    • Release Notes
  • Getting Started
    • Agent Runtime Primer
    • Prerequisites
    • Installation
    • Configuration / Setup
    • Quick Start
  • NVIDIA NeMo Relay CLI
    • About
    • Basic Usage
    • Claude Code
    • Codex
    • Cursor
    • Hermes Agent
  • Supported Integrations
    • About
    • OpenClaw Plugin Guide
    • LangChain Integration Guide
    • LangGraph Integration Guide
    • Deep Agents Integration Guide
  • Instrument Applications
    • About
    • Adding Scopes and Marks
    • Instrument a Tool Call
    • Instrument an LLM Call
    • Add Middleware
    • Code Examples
  • Observability Plugin
    • About
    • Configuration
    • Agent Trajectory Interchange Format (ATIF)
    • Agent Trajectory Observability Format (ATOF)
    • OpenTelemetry
    • OpenInference
  • Adaptive Plugin
    • About
    • Configuration
    • Adaptive Cache Governor (ACG)
    • Adaptive Hints
  • NeMo Guardrails Plugin
    • About
    • Configuration
  • Integrate into Frameworks
    • About
    • Adding Scopes
    • Wrap Tool Calls
    • Wrap LLM Calls
    • Handle Non-Serializable Data
    • Using Codecs
    • Provider Codecs
    • Provider Response Codecs
    • Code Examples
  • Build Plugins
    • About
    • Define a Plugin
    • Validate Plugin Configuration
    • Plugin Configuration Files
    • Register Plugin Behavior
    • Design Plugin Configuration
    • NeMo Guardrails Example Plugin
    • Code Examples
  • Contribute
    • About
    • Development Setup
    • Workflow and Reviews
    • Testing and Documentation
  • Reference
    • APIs
      • Python Library Reference
      • Node.js Library Reference
      • Rust Library Reference
        • nemo-relay
          • api
          • codec
          • config_editor
          • error
          • json
          • observability
            • atif
            • atof
            • openinference
            • otel
            • plugin_component
              • AtifSectionConfig
              • AtofSectionConfig
              • ComponentSpec
              • ObservabilityConfig
              • OtlpSectionConfig
              • S3StorageConfig
              • AtifStorageConfig
              • OBSERVABILITY_PLUGIN_KIND
              • deregister_observability_component
              • register_observability_component
          • plugin
          • plugins
          • stream
          • editor_config
        • nemo-relay-adaptive
        • nemo-relay-ffi
    • Performance
  • Resources
    • Support and FAQs
    • Glossary
    • Troubleshooting Guide
    • Community
    • Legal
NVIDIANVIDIA
Developer-friendly docs for your API
Privacy Policy | Your Privacy Choices | Terms of Service | Accessibility | Corporate Policies | Product Security | Contact

Copyright © 2026, NVIDIA Corporation.

LogoLogo
On this page
  • Fields
  • enabled: bool
  • agent_name: String
  • agent_version: String
  • model_name: String
  • tool_definitions: Option<Vec<Value>>
  • extra: Option<Value>
  • output_directory: Option<PathBuf>
  • filename_template: String
  • storage: Vec<AtifStorageConfig>
  • Trait Implementations
  • impl Clone for AtifSectionConfig
  • clone
  • clone_from
  • impl Debug for AtifSectionConfig
  • fmt
  • impl Default for AtifSectionConfig
  • default
  • impl<'de> Deserialize<'de> for AtifSectionConfig
  • deserialize
  • impl EditorConfig for AtifSectionConfig
  • editor_schema
  • impl Serialize for AtifSectionConfig
  • serialize
ReferenceAPIsRust Library Referencenemo-relayobservabilityplugin_component

Struct Atif Section Config

||View as Markdown|
Previous

Module plugin_component

Next

Struct Atof Section Config

Generated from cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-ffi.

pub struct AtifSectionConfig {
    pub enabled: bool,
    pub agent_name: String,
    pub agent_version: String,
    pub model_name: String,
    pub tool_definitions: Option<Vec<Value>>,
    pub extra: Option<Value>,
    pub output_directory: Option<PathBuf>,
    pub filename_template: String,
    pub storage: Vec<AtifStorageConfig>,
}

Per-trajectory ATIF exporter config.

When enabled, this section creates a dispatcher that opens a separate crate::observability::atif::AtifExporter for each top-level agent or turn scope. The {session_id} placeholder in AtifSectionConfig::filename_template is required so concurrent sibling trajectories cannot overwrite each other’s files.

Fields

enabled: bool

Whether ATIF export is active.

agent_name: String

Human-readable agent name.

agent_version: String

Agent version string.

model_name: String

Default model name.

tool_definitions: Option<Vec<Value>>

Tool definitions available to the agent.

extra: Option<Value>

Extra ATIF agent metadata.

output_directory: Option<PathBuf>

Directory containing trajectory JSON files. Ignored when storage is non-empty.

filename_template: String

Filename template. {session_id} is replaced with the top-level trajectory scope UUID. When storage is non-empty, the rendered filename is appended to each backend’s key prefix.

storage: Vec<AtifStorageConfig>

Optional list of remote storage destinations. When non-empty, completed trajectories are uploaded to every configured backend instead of being written locally; the local file write at output_directory is skipped. Backends are independent: an upload failure on one destination is recorded against that destination and skipped on subsequent trajectories, while the other destinations continue to receive writes.

Trait Implementations

impl Clone for AtifSectionConfig

impl Clone for AtifSectionConfig

clone

fn clone(&self) -> AtifSectionConfig

clone_from

fn clone_from(&mut self, source: &Self)

impl Debug for AtifSectionConfig

impl Debug for AtifSectionConfig

fmt

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl Default for AtifSectionConfig

impl Default for AtifSectionConfig

default

fn default() -> Self

impl<'de> Deserialize<'de> for AtifSectionConfig

impl<'de> Deserialize<'de> for AtifSectionConfig

deserialize

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,

impl EditorConfig for AtifSectionConfig

impl EditorConfig for AtifSectionConfig

editor_schema

fn editor_schema() -> &'static EditorSchema

impl Serialize for AtifSectionConfig

impl Serialize for AtifSectionConfig

serialize

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where
    __S: Serializer,