-
Notifications
You must be signed in to change notification settings - Fork 11
Create StreamingTraceManager once #107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
krisztianfekete
merged 3 commits into
agentevals-dev:main
from
ajimenez1503:feat/StreamingTraceManager
Apr 7, 2026
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,25 +1,27 @@ | ||
| """Minimal FastAPI app for the OTLP HTTP receiver on port 4318. | ||
|
|
||
| Shares the StreamingTraceManager with the main app (port 8001). | ||
| Mounts only the /v1/traces and /v1/logs endpoints. | ||
| """ | ||
|
|
||
| from contextlib import asynccontextmanager | ||
| from __future__ import annotations | ||
|
|
||
| from typing import TYPE_CHECKING | ||
|
|
||
| from fastapi import FastAPI | ||
|
|
||
| from .otlp_routes import otlp_router | ||
|
|
||
| if TYPE_CHECKING: | ||
| from ..streaming.ws_server import StreamingTraceManager | ||
|
|
||
| @asynccontextmanager | ||
| async def lifespan(app: FastAPI): | ||
| from .app import app as main_app | ||
|
|
||
| mgr = getattr(main_app.state, "trace_manager", None) | ||
| if mgr: | ||
| app.state.trace_manager = mgr | ||
| yield | ||
| def create_otlp_app(*, trace_manager: StreamingTraceManager | None = None) -> FastAPI: | ||
| """Create the OTLP HTTP receiver app.""" | ||
| app = FastAPI(title="agentevals OTLP receiver") | ||
| if trace_manager is not None: | ||
| app.state.trace_manager = trace_manager | ||
| app.include_router(otlp_router) | ||
| return app | ||
|
|
||
|
|
||
| otlp_app = FastAPI(title="agentevals OTLP receiver", lifespan=lifespan) | ||
| otlp_app.include_router(otlp_router) | ||
| otlp_app = create_otlp_app() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will this break hot reload functionality of
--dev?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch.
I checked this more closely and the combined
serve --devpath wasn't actually getting uvicorn hot reload before this change either: it runsuvicorn.Server(...).serve()directly, and thereload=True/reload_dirs=...config there doesn't start uvicorn's reload supervisor. So this PR doesn't introduce a new regression, but it did make the mismatch more visible. Could you confirm?I've cleaned that up in this branch by removing the dead reload plumbing and keeping the startup wiring explicit around the shared
StreamingTraceManager. If we want real hot reload for the multi-surface dev server, I'd prefer to handle that as a follow-up since it likely needs a different startup shape. Make sense?