I have the following log file:
*** 2018-09-14T12:36:39.560671+02:00 (DB_NAME)
*** SESSION ID:(12345) 2018-09-14T12:36:39.560750+02:00
*** CLIENT ID:() 2018-09-14T12:36:39.560774+02:00
*** SERVICE NAME:(DB_NAME) 2018-09-14T12:36:39.560798+02:00
*** MODULE NAME:(mod_name_action (TNS V1-V3)) 2018-09-14T12:36:39.560822+02:00
*** ACTION NAME:() 2018-09-14T12:36:39.560848+02:00
*** CLIENT DRIVER:() 2018-09-14T12:36:39.560875+02:00
*** CONTAINER ID:(1) 2018-09-14T12:36:39.560926+02:00
I would like to store the MODULE_NAME value, extracted from this line:
*** MODULE NAME:(mod_name_action (TNS V1-V3)) 2018-09-14T12:36:39.560822+02:00
i.e. just this:
mod_name_action (TNS V1-V3)
I have to do that using python. I am trying with something like:
log_i=open(logname,"r")
for line_of_log in log_i:
#search the MODULE
module = "MODULE NAME:("
str_found_at = line_of_log.find(module)
if str_found_at != -1:
regex = r"MODULE NAME:([a-zA-Z]+)"
MODULE = re.findall(regex, line_of_log)
print "MODULE_A==>", MODULE
log_i.close()
But it doesn't work. Can someone help me?
Using Regex.
Demo:
Output: