-
Notifications
You must be signed in to change notification settings - Fork 0
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
change tags for better data support #3
Conversation
eventContextMessageContext.ConsumerContext.Offset.ToString(), | ||
DateTimeOffset.UtcNow, | ||
theTimer.Elapsed, "500", false); | ||
telemetryClient.TrackKafkaDependency(eventContextMessageContext, "500", false, theTimer.Elapsed); |
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.
Should we have specific error code for this? maybe we can start by the name of Exception type
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.
"500"
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.
fixed
DateTimeOffset.UtcNow, | ||
theTimer.Elapsed, "200", true); | ||
|
||
telemetryClient.TrackKafkaDependency(eventContextMessageContext, "200", true, theTimer.Elapsed); |
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.
"200" -> "ok"?
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.
fixed
No description provided.