mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-04 04:04:14 +00:00
feat(telemetry:major): End to End Testing, Metric Capture, SQL Alchemy Injection
This commit is contained in:
parent
9a0294ab4f
commit
4aa2dc110d
19 changed files with 1854 additions and 881 deletions
29
tests/integration/telemetry/mocking/__init__.py
Normal file
29
tests/integration/telemetry/mocking/__init__.py
Normal file
|
@ -0,0 +1,29 @@
|
|||
# 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.
|
||||
|
||||
"""
|
||||
Mock server infrastructure for telemetry E2E testing.
|
||||
|
||||
This module provides:
|
||||
- MockServerBase: Pydantic base class for all mock servers
|
||||
- MockOTLPCollector: Mock OTLP telemetry collector
|
||||
- MockVLLMServer: Mock vLLM inference server
|
||||
- Mock server harness for parallel async startup
|
||||
"""
|
||||
|
||||
from .mock_base import MockServerBase
|
||||
from .servers import MockOTLPCollector, MockVLLMServer
|
||||
from .harness import MockServerConfig, start_mock_servers_async, stop_mock_servers
|
||||
|
||||
__all__ = [
|
||||
"MockServerBase",
|
||||
"MockOTLPCollector",
|
||||
"MockVLLMServer",
|
||||
"MockServerConfig",
|
||||
"start_mock_servers_async",
|
||||
"stop_mock_servers",
|
||||
]
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue