Hi,
I have log line like this:
Grok Pattern:
(,"session":"(%{DATA:name}@%{DATA:company})?")?
and I want to split the email to values name and company and also save email as whole to session value. I can split it but I dont know how to save it to session value at the same time.
The values I want:
name: "kred06"
company: "gmail.com"
session: "kred06@gmail.com"
Can Anybody help?