mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-06-26 16:24:54 +00:00
fixed entries port when fetching data from db (#376)
This commit is contained in:
parent
6240d85377
commit
47f2e69b7e
@ -206,12 +206,17 @@ func (bed *BaseEntryDetails) UnmarshalData(entry *MizuEntry) error {
|
|||||||
}
|
}
|
||||||
bed.Id = entry.EntryId
|
bed.Id = entry.EntryId
|
||||||
bed.Url = entry.Url
|
bed.Url = entry.Url
|
||||||
|
bed.RequestSenderIp = entry.RequestSenderIp
|
||||||
bed.Service = entry.Service
|
bed.Service = entry.Service
|
||||||
|
bed.Path = entry.Path
|
||||||
bed.Summary = entry.Path
|
bed.Summary = entry.Path
|
||||||
bed.StatusCode = entry.Status
|
bed.StatusCode = entry.Status
|
||||||
bed.Method = entry.Method
|
bed.Method = entry.Method
|
||||||
bed.Timestamp = entry.Timestamp
|
bed.Timestamp = entry.Timestamp
|
||||||
bed.RequestSenderIp = entry.RequestSenderIp
|
bed.SourceIp = entry.SourceIp
|
||||||
|
bed.DestinationIp = entry.DestinationIp
|
||||||
|
bed.SourcePort = entry.SourcePort
|
||||||
|
bed.DestinationPort = entry.DestinationPort
|
||||||
bed.IsOutgoing = entry.IsOutgoing
|
bed.IsOutgoing = entry.IsOutgoing
|
||||||
bed.Latency = entry.ElapsedTime
|
bed.Latency = entry.ElapsedTime
|
||||||
bed.ContractStatus = entry.ContractStatus
|
bed.ContractStatus = entry.ContractStatus
|
||||||
|
Loading…
Reference in New Issue
Block a user