Replies: 1 comment 7 replies
-
Hi @MacNale - Can you describe your use case more? In your example, both spans are generated in the same application, which is considered a service in the Jaeger sense so having the same service name makes sense. Note that this service is the local service, not remote one. Even if your app talks to many different remote services, the spans in the app would all have the same local service name. Are you trying to achieve something different? |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have an application which is made up of multiple services built in proprietary language. I want to collect traces and ingest into Jaeger or APM solution. There is no instrumentation library. However, these services produce traces in a proprietary format. I want to convert these traces to OpenTelemetry traces and ingest into Jaeger or APM solution.
I started using OpenTelemetry-Java SDK.
Configured appropriate exporter. I can see the traces in Jaeger as expected.
BUT it shows only one service.
Whereas I want to depict two different services. Is that possible using OpenTelemetry?
Here is what I want to achieve -
Beta Was this translation helpful? Give feedback.
All reactions