<?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: Tips on how to create props.conf on Splunk cloud in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756857#M120051</link>
    <description>&lt;P&gt;One more thing ; -)&amp;nbsp; &amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/6367"&gt;@bowesmana&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/213957"&gt;@richgalloway&lt;/a&gt;&amp;nbsp;, in general, should we consider using the EVENT_BREAKER on the Universal Forwarder?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 30 Dec 2025 17:17:19 GMT</pubDate>
    <dc:creator>ddrillic</dc:creator>
    <dc:date>2025-12-30T17:17:19Z</dc:date>
    <item>
      <title>Tips on how to create props.conf on Splunk cloud</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756356#M119962</link>
      <description>&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; I am trying to create a little TA to run a command to collect status for the nessus agent. I have it to the point of running the command and sending data in but the line breaking is not working correctly. I tried using the Add Data wizard but it seems to ignore the Should Line Merge = true, each line is an event. I'm new to cloud and maybe I don't know the best way to build a TA, what is the best way to do this?&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;My primary problem is how do I take the following output from the script and get it loaded into one event?&lt;BR /&gt;&lt;BR /&gt;Running: Yes&lt;BR /&gt;Safe Mode: No&lt;BR /&gt;Plugins loaded: Yes&lt;BR /&gt;Linked to: nm1.tn.gov:8834&lt;BR /&gt;Link status: Connected to lorem.ipsum.gov:8834&lt;BR /&gt;Last successful connection with controller: 4 secs ago&lt;BR /&gt;Proxy: None&lt;BR /&gt;Plugin set: 202512062114&lt;BR /&gt;Scanning: No (0 jobs pending, 0 smart scan configs)&lt;BR /&gt;Scans run today: 0 of 10 limit&lt;BR /&gt;Last scanned: 1765177066&lt;BR /&gt;Last connect: 1765301522&lt;BR /&gt;Last connection attempt: 1765301522&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 18:44:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756356#M119962</guid>
      <dc:creator>splunkisaurus</dc:creator>
      <dc:date>2025-12-09T18:44:34Z</dc:date>
    </item>
    <item>
      <title>Re: Tips on how to create props.conf on Splunk cloud</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756363#M119965</link>
      <description>&lt;P&gt;Something like the following&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[sourcetype]
SHOULD_LINEMERGE=false
LINE_BREAKER=([\r\n]{2})
TIME_FORMAT=%s
TIME_PREFIX=Last connection attempt:\s*
MAX_TIMESTAMP_LOOKAHEAD=11&lt;/LI-CODE&gt;&lt;P&gt;with the assumption that you have blocks of data where the event break is a double linefeed/CR between events. See LINE_BREAKER. Timestamp recognition is done with TIME_PREFIX, so adjust for the timestamp you want.&lt;/P&gt;&lt;P&gt;If this is just a single event from a running script, then you can do this instead&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[your_sourcetype]
SHOULD_LINEMERGE=false
LINE_BREAKER=([\r\n]Running)
TIME_PREFIX=Last connection attempt:\s*&lt;/LI-CODE&gt;&lt;P&gt;which will treat the event as starting with Running, it will start a new event when it finds Running and as this occurs only once, it will put it all into the single event&lt;/P&gt;&lt;P&gt;Variations on a theme here are setting LINE_BREAKER to something that will never match, e.g.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;([\r\n]+end_of_file)&lt;/LI-CODE&gt;&lt;P&gt;The best way to write a TA is to create yourself a basic simple app and include the props.conf for that definition and upload it as your own app.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 22:25:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756363#M119965</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2025-12-09T22:25:03Z</dc:date>
    </item>
    <item>
      <title>Re: Tips on how to create props.conf on Splunk cloud</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756372#M119966</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/312161"&gt;@splunkisaurus&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why dont you output JSON from your script so Splunk ingests clean structured events.&lt;BR /&gt;&lt;BR /&gt;You can also use&amp;nbsp;props.conf&amp;nbsp;if you need to split the events. In that case, you can rely on&amp;nbsp;&lt;STRONG&gt;LINE_BREAKER&amp;nbsp;&lt;/STRONG&gt;alone and omit both&amp;nbsp;&lt;STRONG&gt;SHOULD_LINEMERGE&amp;nbsp;&lt;/STRONG&gt;and&amp;nbsp;&lt;STRONG&gt;BREAK_ONLY_BEFORE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;For eg:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[nessus_agent_status]
SHOULD_LINEMERGE = true
BREAK_ONLY_BEFORE = ^Running:
LINE_BREAKER = ([\r\n]+)Running:
TRUNCATE = 0
DATETIME_CONFIG = CURRENT&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Prewin&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;If this answer helped you, please consider marking it as the solution or giving a Karma. Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 10 Dec 2025 09:08:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756372#M119966</guid>
      <dc:creator>PrewinThomas</dc:creator>
      <dc:date>2025-12-10T09:08:50Z</dc:date>
    </item>
    <item>
      <title>Re: Tips on how to create props.conf on Splunk cloud</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756780#M120033</link>
      <description>&lt;P&gt;This one makes perfect sense to me -&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[your_sourcetype]
SHOULD_LINEMERGE=false
LINE_BREAKER=([\r\n]Running)
TIME_PREFIX=Last connection attempt:\s*&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 25 Dec 2025 00:32:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756780#M120033</guid>
      <dc:creator>ddrillic</dc:creator>
      <dc:date>2025-12-25T00:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: Tips on how to create props.conf on Splunk cloud</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756799#M120034</link>
      <description>&lt;P&gt;This will eat/discard "Running," though:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;LINE_BREAKER = ([\r\n]Running)&lt;/LI-CODE&gt;&lt;P&gt;and the event will be:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;: Yes
Safe Mode: No
Plugins loaded: Yes
...&lt;/LI-CODE&gt;&lt;P&gt;In my own work with Nessus Agent, with or without Splunk, I take an approach similar to&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/28010"&gt;@PrewinThomas&lt;/a&gt;'s suggestion and convert, e.g., the output of '&lt;SPAN&gt;nessuscli agent status --local --show-uuid' to a PowerShell object, a JSON object, or whatever format makes sense for the consumer. If I were doing this today in Splunk, I would use JSON and an accelerated data model (not INDEXED_EXTRACTIONS) or field/value transformations like field_name=field_value that work with tstats and PREFIX().&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Dec 2025 22:12:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756799#M120034</guid>
      <dc:creator>tscroggins</dc:creator>
      <dc:date>2025-12-26T22:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: Tips on how to create props.conf on Splunk cloud</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756820#M120037</link>
      <description>&lt;P&gt;You are right&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/49493"&gt;@tscroggins&lt;/a&gt;,&amp;nbsp;it should be more like -&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;LINE_BREAKER = ([\r\n]+)(?=Running) &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;A &lt;STRONG&gt;positive lookahead&lt;/STRONG&gt; that checks, without consuming.&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Dec 2025 21:57:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756820#M120037</guid>
      <dc:creator>ddrillic</dc:creator>
      <dc:date>2025-12-28T21:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: Tips on how to create props.conf on Splunk cloud</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756821#M120038</link>
      <description>&lt;P&gt;Positive lookahead wastes resources.&amp;nbsp; Over millions of events, those extra cycles add up to excess SVC consumption.&amp;nbsp; This works better&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;LINE_BREAKER = ([\r\n]+)Running&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 28 Dec 2025 22:33:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756821#M120038</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2025-12-28T22:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: Tips on how to create props.conf on Splunk cloud</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756833#M120042</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/213957"&gt;@richgalloway&lt;/a&gt;&amp;nbsp;, so we are "losing" the&amp;nbsp;Running word from the event?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Dec 2025 15:04:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756833#M120042</guid>
      <dc:creator>ddrillic</dc:creator>
      <dc:date>2025-12-29T15:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: Tips on how to create props.conf on Splunk cloud</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756846#M120046</link>
      <description>&lt;P&gt;Just checked -&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;LINE_BREAKER = ([\r\n]+)Running&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"Running" is still part of the _raw data after ingestion.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 01:22:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756846#M120046</guid>
      <dc:creator>ddrillic</dc:creator>
      <dc:date>2025-12-30T01:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: Tips on how to create props.conf on Splunk cloud</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756857#M120051</link>
      <description>&lt;P&gt;One more thing ; -)&amp;nbsp; &amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/6367"&gt;@bowesmana&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/213957"&gt;@richgalloway&lt;/a&gt;&amp;nbsp;, in general, should we consider using the EVENT_BREAKER on the Universal Forwarder?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 17:17:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756857#M120051</guid>
      <dc:creator>ddrillic</dc:creator>
      <dc:date>2025-12-30T17:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: Tips on how to create props.conf on Splunk cloud</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756858#M120052</link>
      <description>&lt;P&gt;Yes, although be mindful of the (minimal) local overhead. Enabling event breaker will minimize pipeline stalls and improve load balancing if you're sending to multiple receivers. Throughput will still be limited by the limits.conf [thurput] stanza maxKBps setting, ingest pipelines, queues, receiver capacity, etc.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 17:36:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756858#M120052</guid>
      <dc:creator>tscroggins</dc:creator>
      <dc:date>2025-12-30T17:36:09Z</dc:date>
    </item>
    <item>
      <title>Re: Tips on how to create props.conf on Splunk cloud</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756860#M120053</link>
      <description>&lt;P&gt;Always.&amp;nbsp; It never hurts to have it and can help when the UF has to break an S2S packet.&amp;nbsp; Don't forget to also set &lt;FONT face="courier new,courier"&gt;EVENT_BREAKER_ENABLE=true&lt;/FONT&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 20:26:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756860#M120053</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2025-12-30T20:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: Tips on how to create props.conf on Splunk cloud</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756861#M120054</link>
      <description>&lt;P&gt;No, you are not losing "Running" from each event.&amp;nbsp; Only the first capture group in &lt;FONT face="courier new,courier"&gt;LINE_BREAKER&lt;/FONT&gt; is discarded from the event.&lt;/P&gt;&lt;P&gt;However, positive and negative lookaheads do not perform well in Splunk so they should be avoided.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 20:28:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Tips-on-how-to-create-props-conf-on-Splunk-cloud/m-p/756861#M120054</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2025-12-30T20:28:12Z</dc:date>
    </item>
  </channel>
</rss>

