The new DT timeline does not yet have the message about dropped spans, that was available pre 6.5
|
function DroppedSpansDocsLink({ agentName }) { |
|
const docs = getFeatureDocs('dropped-spans', agentName); |
|
|
|
if (!docs || !docs.url) { |
|
return null; |
|
} |
|
|
|
return ( |
|
<ExternalLink href={docs.url}> |
|
Learn more in the documentation. |
|
</ExternalLink> |
|
); |
|
} |
Closes: #22348
The new DT timeline does not yet have the message about dropped spans, that was available pre 6.5
kibana/x-pack/plugins/apm/public/components/app/TransactionDetails/Transaction/Spans/view.js
Lines 131 to 143 in 7266349
Closes: #22348