Ask questions. Get answers. Find technical product solutions from passionate experts in the NXLog community.
transferring a csv file from one location in my local to another
Sangeetha created
Hi,
I'm trying to parse a csv log file from my local and store it again in another location in my local. But I see it is not happening.
The config has no errors. the destination file is same as source file with respect to file properties.
Can you tell whether any specific check should be done?
<Extension csv_parser1>
Module xm_csv
Fields date-time,client-ip,client-hostname,server-ip,server-hostname,
source-context,connector-id,source,event-id,internal-message-id,message-id,recipient-address,
recipient-status,total-bytes,recipient-count,related-recipient-address,reference,message-subject,
sender-address,return-path,message-info,directionality,tenant-id,
original-client-ip,original-server-ip,custom-data
Delimiter ,
</Extension>
Message Tracking log as input
<Input messagetracking>
Module im_file
File '%BASEDIR%file.log'
<Exec>
if $raw_event =~ /^(\xEF\xBB\xBF)?(date-time,|#)/ drop();
else
{
csv_parser1->parse_csv();
$EventTime = parsedate(${date-time});
}
</Exec>
</Input>
<Output msg>
Module om_file
File 'location\msg.log'
</Output>
<Route 1>
Path messagetracking => msg
</Route>
Sangeetha created