Spans not being generated for RMI application. #4695
-
When using auto-instrumentation with a few RMI applications, spans are not being generated. I went through the tests and I see tests are in place for checking span formation. Am I missing something here? Debug logs: Application: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Can you try changing your exporter configuration to |
Beta Was this translation helpful? Give feedback.
-
Some related discussion recently: #4579 (comment) This condition dates back to the original rmi instrumentation commit DataDog/dd-trace-java#1128, and I could not find any discussion of why it's desirable not to create a rmi client span when there's no parent. Typically this condition would be used to limit noisy background usage. But without any further info, I would support removing the condition, and if we find that it's too noisy we can revisit and document the decision more clearly. |
Beta Was this translation helpful? Give feedback.
Some related discussion recently: #4579 (comment)
This condition dates back to the original rmi instrumentation commit DataDog/dd-trace-java#1128, and I could not find any discussion of why it's desirable not to create a rmi client span when there's no parent.
Typically this condition would be used to limit noisy background usage. But without any further info, I would support removing the condition, and if we find that it's too noisy we can revisit and document the …