mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-08-09 12:29:17 +00:00
Rename URL
field to Target URI
in the UI to prevent confusion (#509)
This commit is contained in:
parent
86240e4121
commit
e667597e6e
@ -162,6 +162,7 @@ func (d dissecting) Analyze(item *api.OutputChannelItem, resolvedSource string,
|
|||||||
}
|
}
|
||||||
|
|
||||||
request["url"] = reqDetails["url"].(string)
|
request["url"] = reqDetails["url"].(string)
|
||||||
|
reqDetails["targetUri"] = reqDetails["url"]
|
||||||
reqDetails["path"] = path
|
reqDetails["path"] = path
|
||||||
reqDetails["summary"] = path
|
reqDetails["summary"] = path
|
||||||
|
|
||||||
@ -269,9 +270,9 @@ func representRequest(request map[string]interface{}) (repRequest []interface{})
|
|||||||
Selector: `request.method`,
|
Selector: `request.method`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Name: "URL",
|
Name: "Target URI",
|
||||||
Value: request["url"].(string),
|
Value: request["targetUri"].(string),
|
||||||
Selector: `request.url`,
|
Selector: `request.targetUri`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Name: "Path",
|
Name: "Path",
|
||||||
|
Loading…
Reference in New Issue
Block a user