-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Security Solution] Event/Alert Details JSON View displays nested objects inaccurately #90355
Comments
Pinging @elastic/security-threat-hunting (Team:Threat Hunting) |
Pinging @elastic/security-solution (Team: SecuritySolution) |
@karanbirsingh-qasource can you please validate the fix of this issue on 7.12.BC3? Thanks :) |
Hi @MadameSheema & @rylnd Thanks for the update. we have validated this issue on Build Details:
Question:Q1. On our Sample data Event/Alert Details JSON View , the JSON data is encoded , however we have Unescaped that same data and check the order and structuring was correct and matching to the one of GET Document signal . So can you please confirm if this json data being encoded under Event/Alert Details can be also be concern part of this reported issue or not?
Observations: Steps followed to created Nested Data Detection Alert
PUT indicator PUT mydata
thanks !! |
@rylnd correct me if I'm wrong but that is correct, right? |
The escaping of nested objects is expected; there are several other examples of this: There is one outstanding issue here, which is that nested objects are missing the encapsulating array in the escaped string format. This is demonstrated in @karanbirsingh-qasource's example; you can see that the I would say that the structure is not truly correct as asserted above, but as each object is presented and it's still valid JSON this is acceptable for now. Here's the basic format if you have multiple nested objects: "threat": {
"indicator": "{},{}"
}, @MadameSheema I see you changing labels/assignees here. Would you like to close this issue, keep it open for the issue above, or something else? |
Thanks @rylnd let's keep it opened as an enhancement know to finish the work on it ;) |
Pinging @elastic/security-detections-response (Team:Detections and Resp) |
The Event/Alert Details flyout displays nested objects (
type: nested
) as a single object, and in doing so loses information about the true underlying structure of those nested documents.Affects Kibana 7.11+
Display in JSON View:
Document in the signals index:
Note here that
threat.indicator.url
is unmapped.Related to #90222, but distinct enough that I filed a separate issue.
The text was updated successfully, but these errors were encountered: