mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-04 18:13:44 +00:00
tele tests
# What does this PR do? ## Test Plan
This commit is contained in:
parent
1c9a31d8bd
commit
b3c9d5a15f
8 changed files with 500 additions and 90 deletions
19
tests/integration/telemetry/collectors/__init__.py
Normal file
19
tests/integration/telemetry/collectors/__init__.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# 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.
|
||||
|
||||
"""Telemetry collector helpers for integration tests."""
|
||||
|
||||
from .base import BaseTelemetryCollector, SpanStub
|
||||
from .in_memory import InMemoryTelemetryCollector, InMemoryTelemetryManager
|
||||
from .otlp import OtlpHttpTestCollector
|
||||
|
||||
__all__ = [
|
||||
"BaseTelemetryCollector",
|
||||
"SpanStub",
|
||||
"InMemoryTelemetryCollector",
|
||||
"InMemoryTelemetryManager",
|
||||
"OtlpHttpTestCollector",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue