Source code for nv_ingest.schemas.otel_tracer_schema
# SPDX-FileCopyrightText: Copyright (c) 2024, NVIDIA CORPORATION & AFFILIATES.
# All rights reserved.
# SPDX-License-Identifier: Apache-2.0
from pydantic import ConfigDict, BaseModel
[docs]
class OpenTelemetryTracerSchema(BaseModel):
otel_endpoint: str = "localhost:4317"
raise_on_failure: bool = False
model_config = ConfigDict(extra="forbid")