mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
fix: missing metadata info from text-ouput events (#142392)
This commit is contained in:
parent
3bad88157a
commit
392f49020b
1 changed files with 4 additions and 4 deletions
|
@ -66,10 +66,10 @@ export const SessionViewDetailPanel = ({
|
|||
}),
|
||||
content: (
|
||||
<DetailPanelMetadataTab
|
||||
processHost={selectedProcess?.events[0]?.host}
|
||||
processContainer={selectedProcess?.events[0]?.container}
|
||||
processOrchestrator={selectedProcess?.events[0]?.orchestrator}
|
||||
processCloud={selectedProcess?.events[0]?.cloud}
|
||||
processHost={selectedProcess?.getDetails()?.host}
|
||||
processContainer={selectedProcess?.getDetails()?.container}
|
||||
processOrchestrator={selectedProcess?.getDetails()?.orchestrator}
|
||||
processCloud={selectedProcess?.getDetails()?.cloud}
|
||||
/>
|
||||
),
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue