feat(v2.0): Multi-session, Manifest Parsing, and Rust Filtering#59
Merged
Conversation
, #55, #56) - MultiSession: Manage multiple ETW sessions with unified event delivery (#48) - ManifestParser: Parse ETW provider manifests for typed events (#55) - RustEventFilter: High-performance event filtering for Rust-side evaluation (#56) - TypedEventFactory: Generate dataclass wrappers from event definitions 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Use --no-index flag to prevent uv from looking up PyPI when installing the locally-built wheel. This avoids version conflicts with the released package on PyPI. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add diagnostic output to identify which wheel is being installed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Match wheel filename with Python version (cp39, cp310, etc.) to ensure correct wheel is installed for each Python version in matrix test.
The previous 'python -c' was using system Python instead of the venv Python, causing wrong wheel selection for Python 3.10/3.11/3.12.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
This PR implements three major v2.0.0 features using TDD approach:
MultiSessionclass for managing multiple ETW sessions with unified event delivery from all providersManifestParser,ProviderManifest,TypedEventFactoryfor parsing ETW provider manifests and generating typed Python classesRustEventFilterclass for high-performance event filtering to be evaluated in RustNew Components
MultiSession (
multi_session.py)Manifest Parsing (
manifest.py)ManifestParser: Parse manifests from registry or files (.man, .mof)ProviderManifest: Container for provider metadata and event definitionsEventDefinition/FieldDefinition: Type-safe event schemaTypedEventFactory: Generate dataclass wrappers from definitionsManifestCache: Singleton cache for efficient manifest reuseRustEventFilter (
rust_filter.py)Test Coverage
Test plan
pytest tests/test_multi_session.py tests/test_manifest_events.py tests/test_rust_filtering.py -vruff check)Closes #48, #55, #56
🤖 Generated with Claude Code