combine
I have two types of log:
1. msg: "Hi, This is me"
id: 1234
span: logs
url: abc.com
2. msg: "ERROR"
id: 1234
span: errorLogs
The common field is "id" and the "url" is not present in the error logs.
I want to combine the above two and show the result as:
msg: "ERROR"
id: 1234
url: abc.com
span: errorLogs
I tried using joins but not getting desired results. Any idea which other operator can help here?
Please sign in to leave a comment.
Comments
1 comment