<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: forwarder with regex in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/forwarder-with-regex/m-p/583738#M47833</link>
    <description>&lt;P&gt;&lt;SPAN&gt;REGEX = (?:&lt;FONT color="#33CCCC"&gt;SIMONE&lt;/FONT&gt;|MARCO&lt;FONT color="#FF0000"&gt;|SIMONE.*HOME&lt;/FONT&gt;) This part is irrelevant since&amp;nbsp;xxxxx|xxxxx|&lt;FONT color="#33CCCC"&gt;SIMONE&lt;/FONT&gt;|xxxxx|HOME|xxxxx will match with the first alternative&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 04 Feb 2022 15:44:03 GMT</pubDate>
    <dc:creator>ITWhisperer</dc:creator>
    <dc:date>2022-02-04T15:44:03Z</dc:date>
    <item>
      <title>forwarder with regex</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/forwarder-with-regex/m-p/583648#M47827</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;my solution foresees a heavy forwarder that sends data to an indexer, in the transforms.conf file I have a regex, which allows me to filter through string only the lines I need&lt;/P&gt;&lt;P&gt;regex example&lt;BR /&gt;REGEX = ^.*(?:SIMONE|MARCO).*&lt;/P&gt;&lt;P&gt;file.log example to monitor&lt;BR /&gt;xxxxx|xxxxx|xxxxx|SIMONE|xxxxx|xxxxx|xxxxx&lt;BR /&gt;xxxxx|xxxxx|xxxxx|VALERIO|xxxxx|xxxxx|xxxxx&lt;BR /&gt;xxxxx|xxxxx|xxxxx|SILVIA|xxxxx|xxxxx|xxxxx&lt;BR /&gt;xxxxx|xxxxx|xxxxx|MARCO|xxxxx|xxxxx|xxxxx&lt;/P&gt;&lt;P&gt;I am acknowledging these errors&lt;/P&gt;&lt;P&gt;ERROR Regex - Failed in pcre_exec: Error PCRE_ERROR_MATCHLIMIT for regex:&lt;BR /&gt;WARN regexExtractionProcessor - Regular expression for stanza xxxxx exceeded configured PCRE match limit. One or more fields might not have their values extracted, which can lead to incorrect search results. Fix the regular expression to improve search performance or increase the MATCH_LIMIT in props.conf to include the missing field extractions.&lt;/P&gt;&lt;P&gt;I wanted to know if there is a different way to filter the data to send without regex?&lt;/P&gt;&lt;P&gt;Best Regards,&lt;BR /&gt;Simone&lt;/P&gt;</description>
      <pubDate>Thu, 03 Feb 2022 22:02:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/forwarder-with-regex/m-p/583648#M47827</guid>
      <dc:creator>simo</dc:creator>
      <dc:date>2022-02-03T22:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: forwarder with regex</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/forwarder-with-regex/m-p/583653#M47829</link>
      <description>&lt;P&gt;Are you sure your data is properly broken into events?&lt;/P&gt;&lt;P&gt;It looks as if you were processing a huge chunk of data at once thus hitting too many matches.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Feb 2022 22:10:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/forwarder-with-regex/m-p/583653#M47829</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2022-02-03T22:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: forwarder with regex</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/forwarder-with-regex/m-p/583660#M47830</link>
      <description>&lt;P&gt;Try your regex without the greedy .* since this is implied i.e. the expression will be matched anywhere in the event&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;REGEX = (?:SIMONE|MARCO)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Feb 2022 22:59:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/forwarder-with-regex/m-p/583660#M47830</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-02-03T22:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: forwarder with regex</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/forwarder-with-regex/m-p/583737#M47832</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Thanks for the reply,&amp;nbsp;I would like to remove the regex to filter.&amp;nbsp;it's possible?&lt;/P&gt;&lt;P&gt;in the regex it is also present&lt;/P&gt;&lt;P&gt;REGEX = (?:SIMONE|MARCO|SIMONE.*HOME)&lt;/P&gt;&lt;P&gt;xxxxx|xxxxx|SIMONE|xxxxx|HOME|xxxxx&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Simone&lt;/P&gt;</description>
      <pubDate>Fri, 04 Feb 2022 15:37:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/forwarder-with-regex/m-p/583737#M47832</guid>
      <dc:creator>simo</dc:creator>
      <dc:date>2022-02-04T15:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: forwarder with regex</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/forwarder-with-regex/m-p/583738#M47833</link>
      <description>&lt;P&gt;&lt;SPAN&gt;REGEX = (?:&lt;FONT color="#33CCCC"&gt;SIMONE&lt;/FONT&gt;|MARCO&lt;FONT color="#FF0000"&gt;|SIMONE.*HOME&lt;/FONT&gt;) This part is irrelevant since&amp;nbsp;xxxxx|xxxxx|&lt;FONT color="#33CCCC"&gt;SIMONE&lt;/FONT&gt;|xxxxx|HOME|xxxxx will match with the first alternative&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Feb 2022 15:44:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/forwarder-with-regex/m-p/583738#M47833</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-02-04T15:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: forwarder with regex</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/forwarder-with-regex/m-p/583741#M47834</link>
      <description>&lt;P&gt;sorry my example is incorrect&lt;/P&gt;&lt;P&gt;REGEX = (?:SIMONE|MARCO|DANIELE.*HOME)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;xxxxx|xxxxx|DANIELE|xxxxx|HOME|xxxxx&lt;/STRONG&gt;&lt;BR /&gt;xxxxx|xxxxx|DANIELE|xxxxx|OFFICE|xxxxx&lt;BR /&gt;&lt;STRONG&gt;xxxxx|xxxxx|xxxxx|SIMONE|xxxxx|xxxxx|xxxxx&lt;/STRONG&gt;&lt;BR /&gt;xxxxx|xxxxx|xxxxx|VALERIO|xxxxx|xxxxx|xxxxx&lt;BR /&gt;xxxxx|xxxxx|xxxxx|SILVIA|xxxxx|xxxxx|xxxxx&lt;BR /&gt;&lt;STRONG&gt;xxxxx|xxxxx|xxxxx|MARCO|xxxxx|xxxxx|xxxxx&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Feb 2022 15:55:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/forwarder-with-regex/m-p/583741#M47834</guid>
      <dc:creator>simo</dc:creator>
      <dc:date>2022-02-04T15:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: forwarder with regex</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/forwarder-with-regex/m-p/583743#M47836</link>
      <description>&lt;P&gt;That is the correct expression to match the bold events&lt;/P&gt;</description>
      <pubDate>Fri, 04 Feb 2022 15:58:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/forwarder-with-regex/m-p/583743#M47836</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-02-04T15:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: forwarder with regex</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/forwarder-with-regex/m-p/583745#M47837</link>
      <description>&lt;P&gt;ok, but it is possible to filter without regex?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Feb 2022 16:11:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/forwarder-with-regex/m-p/583745#M47837</guid>
      <dc:creator>simo</dc:creator>
      <dc:date>2022-02-04T16:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: forwarder with regex</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/forwarder-with-regex/m-p/583746#M47838</link>
      <description>&lt;P&gt;Yes, you just make the REGEX match anything&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;REGEX = .&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Feb 2022 16:18:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/forwarder-with-regex/m-p/583746#M47838</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-02-04T16:18:19Z</dc:date>
    </item>
  </channel>
</rss>

