Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

sending as mail attachment the nifi log or customized log

avatar
New Member

I trying to capture log details and sending as an mail or as an attachment through nifi process.

Please help me out,

1 ACCEPTED SOLUTION

avatar
Super Guru

@Gurpreet Singh

You need to use "GetFile" to get the log file. Then use split text or some filter process based on your requirements to parse log file (or simply just send the whole file) and then send to PutEmail processor to send the emil.

https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi.processors.standard.PutEmail/

View solution in original post

3 REPLIES 3

avatar
Super Guru

@Gurpreet Singh

You need to use "GetFile" to get the log file. Then use split text or some filter process based on your requirements to parse log file (or simply just send the whole file) and then send to PutEmail processor to send the emil.

https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi.processors.standard.PutEmail/

avatar
Guru

Minor sidenote: can use TailFile with polling interval as alternative to GetFile.

avatar
New Member

Thanks Greg, I had tried with Tailfile and its working fine, thanks for the solution and idea to do it