Member since
04-23-2020
2
Posts
0
Kudos Received
0
Solutions
04-26-2020
05:30 AM
Hi Markushg, When you want to apply condition on any number of attributes based on a pattern match. Then you may consider using anyMatchingAttribute NiFi Function. Here is the link to the documentation: https://nifi.apache.org/docs/nifi-docs/html/expression-language-guide.html#anyattribute In your case, You may have to do something like as below: ${anyMatchingAttribute("syslog.structuredData*os"):equals('linux69')}
... View more