-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Instrument event processor #7512
Conversation
sdk/eventhub/Azure.Messaging.EventHubs/src/Processor/PartitionPump.cs
Outdated
Show resolved
Hide resolved
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.
left a couple of comments
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.
There was a recent work stream for preview 3 that made some non-trivial changes to a lot of the Event Processor surface; you're likely to hit some conflicts, but I think the areas that you're in shouldn't have been too badly impacted.
I left a couple of notes to ask for Doc comments for internal consistency with the surrounding library code. If you're in a rush, let me know and I don't mind circling back to add them in.
sdk/eventhub/Azure.Messaging.EventHubs/src/Diagnostics/EventDataInstrumentation.cs
Show resolved
Hide resolved
sdk/eventhub/Azure.Messaging.EventHubs/src/Diagnostics/EventDataInstrumentation.cs
Show resolved
Hide resolved
sdk/eventhub/Azure.Messaging.EventHubs/tests/Diagnostics/DiagnosticsTests.cs
Show resolved
Hide resolved
@@ -6,6 +6,7 @@ | |||
<PackageReleaseNotes>https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/eventhub/Azure.Messaging.EventHubs/CHANGELOG.md</PackageReleaseNotes> | |||
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks> | |||
<EnableFxCopAnalyzers>false</EnableFxCopAnalyzers> | |||
<UseProjectReferenceToAzureCore>true</UseProjectReferenceToAzureCore> |
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.
Temporary until we ship preview 3
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.
Event Hubs has another package for preview 3 due to be released this week. If you wouldn't mind holding off on merging until that point, it would be appreciated.
Flipping to "Request Changes" to prevent accidental merge. Changes still LGTM.
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.
Event Hubs is now unblocked. Thanks for your patience.
Adds instrumentation for EventProcessor processing and checkpoints
Fixes: #7554