I am looking for help to extract the values from my log files
my log file has a sequence of data as follows
1.){xxxxxxxxxx} - Processing request
Loggeduser: true
Loggedusername: xyz/
[email protected]
Loginproviders: xxxxxxxxx
2.){xxxxxxxxxx} - Processing request
Loggeduser: true
Loggedusername: xyz/
[email protected]
Loginproviders: xxxxxxxxx
From the above mentioned sequence i am interested in extracting Loggedusername and its value to a tabular form, something as mentioned below
Activity user
Loggedusername xyz/
[email protected]
Loggedusername xyz/
[email protected]
How can i create a table with useful information as mentioned above.
... View more