opentelemetry -> jaeger

This commit is contained in:
Ashwin Bharambe 2024-09-17 11:15:18 -07:00 committed by Ashwin Bharambe
parent 5d75c2437b
commit 84ebed9c9f
5 changed files with 231 additions and 0 deletions

View file

@ -0,0 +1,12 @@
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the terms described in the LICENSE file in
# the root directory of this source tree.
from pydantic import BaseModel
class OpenTelemetryConfig(BaseModel):
jaeger_host: str = "localhost"
jaeger_port: int = 6831