Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]
Created 09-12-2023 07:18 AM
Hi everyone,
I use NiFi to frequently check if a website is up or down. I get the following response as text in a single Flowfile:
HTTP/1.1: 200 Connection established
Proxy-Agent: Fortinet-Proxy/1.0
Content-Type: image/jpeg
Connection: keep-alive
Date: Tue, 12 Sep 2023 14:05:43 GMT
Server: Apache
Strict-Transport-Security: max-age=31536000
URL: https://test.comHow can I turn these lines into Key/Value-Pairs or Attributes, to use them with further processors? My goal is to save these Informations in an mySQL Database where the following fields are given:
Best regards
Maik
Created 09-12-2023 08:55 AM
Hi @CommanderLaus ,
The easiest way I can think of is to use the ExtractText Processor where you define an attribute as dynamic property and assign the Regex as follows:
I did only the first three fields but you can do the others the same way.
If that helps please accept solution.
Thanks
Created 09-12-2023 08:55 AM
Hi @CommanderLaus ,
The easiest way I can think of is to use the ExtractText Processor where you define an attribute as dynamic property and assign the Regex as follows:
I did only the first three fields but you can do the others the same way.
If that helps please accept solution.
Thanks
Created 09-13-2023 02:50 AM