mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-17 07:12:36 +00:00
39 lines
1.3 KiB
Python
39 lines
1.3 KiB
Python
# 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 typing import Any, Dict
|
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
|
|
class OpenTelemetryConfig(BaseModel):
|
|
otel_endpoint: str = Field(
|
|
default="http://localhost:4318/v1/traces",
|
|
description="The OpenTelemetry collector endpoint URL",
|
|
)
|
|
service_name: str = Field(
|
|
default="llama-stack",
|
|
description="The service name to use for telemetry",
|
|
)
|
|
trace_store: str = Field(
|
|
default="postgres",
|
|
description="The trace store to use for telemetry",
|
|
)
|
|
jaeger_query_endpoint: str = Field(
|
|
default="http://localhost:16686/api/traces",
|
|
description="The Jaeger query endpoint URL",
|
|
)
|
|
postgres_conn_string: str = Field(
|
|
default="host=localhost dbname=llama_stack user=llama_stack password=llama_stack port=5432",
|
|
description="The PostgreSQL connection string to use for storing traces",
|
|
)
|
|
|
|
@classmethod
|
|
def sample_run_config(cls, **kwargs) -> Dict[str, Any]:
|
|
return {
|
|
"otel_endpoint": "${env.OTEL_ENDPOINT:http://localhost:4318/v1/traces}",
|
|
"service_name": "${env.OTEL_SERVICE_NAME:llama-stack}",
|
|
}
|