-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Visualize uninstrumented services in the dependency diagrams #4853
Conversation
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.
👍
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #4853 +/- ##
==========================================
+ Coverage 95.55% 96.43% +0.88%
==========================================
Files 313 304 -9
Lines 18160 18089 -71
==========================================
+ Hits 17352 17444 +92
+ Misses 647 510 -137
+ Partials 161 135 -26
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@@ -75,9 +74,8 @@ func newDatabase(tracer trace.Tracer, logger log.Factory) *database { | |||
func (d *database) Get(ctx context.Context, customerID int) (*Customer, error) { | |||
d.logger.For(ctx).Info("Loading customer", zap.Int("customer_id", customerID)) | |||
|
|||
ctx, span := d.tracer.Start(ctx, "SQL SELECT", trace.WithSpanKind(trace.SpanKindClient)) | |||
_, span := d.tracer.Start(ctx, "SQL SELECT") |
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.
don't follow the reasoning. Both ctx and span kind were appropriate
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.
What I mean is I don't agree with the change, it doesn't make sense to me. This particular code was already correct.
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.
Signed-off-by: nidhey27 <nidhey.indurkar@infracloud.io>
…spans Signed-off-by: nidhey27 <nidhey.indurkar@infracloud.io>
Signed-off-by: nidhey27 <nidhey.indurkar@infracloud.io>
Signed-off-by: nidhey27 <nidhey.indurkar@infracloud.io>
Signed-off-by: nidhey27 <nidhey.indurkar@infracloud.io>
Signed-off-by: nidhey27 <nidhey.indurkar@infracloud.io>
Signed-off-by: nidhey27 <nidhey.indurkar@infracloud.io>
….GetDriver Signed-off-by: nidhey27 <nidhey.indurkar@infracloud.io>
Replaced by #5062 |
Which problem is this PR solving?
Description of the changes
GetDependencies
to identify and include client spans without corresponding server spans, ensuring a complete dependency graph.updateServiceDependencyLinks
to streamline the update of service dependencies, reducing code duplication.How was this change tested?
Checklist
jaeger
:make lint test
jaeger-ui
:yarn lint
andyarn test