<?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 How to check performance implications for props.conf changes (parsing and merging pipeline)? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-to-check-performance-implications-for-props-conf-changes/m-p/394747#M70452</link>
    <description>&lt;P&gt;Is it possible to check the performance of the parsing and merging pipeline when making changes to props.conf for a particular source or sourcetype?&lt;/P&gt;

&lt;P&gt;We currently only have line_breaker set for a particular source and would like to make recommendations to improve performance by including the props.conf changes that are part of Splunk's best practices like:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; LINE_BREAKER
 MAX_TIMESTAMP_LOOKAHEAD
 TIME_PREFIX
 TIME_FORMAT
 SHOULD_LINEMERGE
 TRUNCATE
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I also looked at the MC/DMC under the Indexing tab but it wasn't much help.&lt;/P&gt;

&lt;P&gt;I tried digging through metrics.log and ran a search like &lt;CODE&gt;index=_internal host=indexer source="/opt/splunk/var/log/splunk/metrics.log" processor=linebreaker OR processor=aggregator&lt;/CODE&gt;&lt;BR /&gt;
and I came up with some data I would possibly be interested in but there is no distinction of which source or sourcetype the info belongs to. I assume it's an aggregated number that includes all sources and sourcetypes.&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;07-22-2019 14:45:16.947 -0400 INFO  Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0, executes=97, cumulative_hits=1706601&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;I also ran a search for the source I was interested in (forescout) by running &lt;CODE&gt;index=_internal host=indexer source="/opt/splunk/var/log/splunk/metrics.log" forescout&lt;/CODE&gt; and I came across logs from metrics.log that were part of the forescout index, source, and sourcetype. I saw groups like:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; per_index_thruput
 per_sourcetype_thruput
 per_source_thruput
 thruput
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;But I read from Splunk docs - Aboutmetricslog (I can't post links) that the thruput messages relate to the size of the "raw" items flowing through the data pipeline when it reaches the indexing pipeline, so this all takes place after the parsing and merging pipeline, so it's not of any help to me.&lt;/P&gt;

&lt;P&gt;If anyone has any ideas, please let me know!&lt;/P&gt;

&lt;P&gt;Thanks.&lt;/P&gt;

&lt;P&gt;7/23 edit:&lt;BR /&gt;
I came up with:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=forescout 
| eval latency=(_indextime-_time) 
| eval day=strftime(_time,"%b/%d")
| stats avg(latency), min(latency), max(latency) BY day
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;It's not exactly what I'm looking for but I think it will provide some insight into what I am trying to achieve.&lt;/P&gt;</description>
    <pubDate>Mon, 22 Jul 2019 19:18:31 GMT</pubDate>
    <dc:creator>jnguy_qmulos</dc:creator>
    <dc:date>2019-07-22T19:18:31Z</dc:date>
    <item>
      <title>How to check performance implications for props.conf changes (parsing and merging pipeline)?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-check-performance-implications-for-props-conf-changes/m-p/394747#M70452</link>
      <description>&lt;P&gt;Is it possible to check the performance of the parsing and merging pipeline when making changes to props.conf for a particular source or sourcetype?&lt;/P&gt;

&lt;P&gt;We currently only have line_breaker set for a particular source and would like to make recommendations to improve performance by including the props.conf changes that are part of Splunk's best practices like:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; LINE_BREAKER
 MAX_TIMESTAMP_LOOKAHEAD
 TIME_PREFIX
 TIME_FORMAT
 SHOULD_LINEMERGE
 TRUNCATE
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I also looked at the MC/DMC under the Indexing tab but it wasn't much help.&lt;/P&gt;

&lt;P&gt;I tried digging through metrics.log and ran a search like &lt;CODE&gt;index=_internal host=indexer source="/opt/splunk/var/log/splunk/metrics.log" processor=linebreaker OR processor=aggregator&lt;/CODE&gt;&lt;BR /&gt;
and I came up with some data I would possibly be interested in but there is no distinction of which source or sourcetype the info belongs to. I assume it's an aggregated number that includes all sources and sourcetypes.&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;07-22-2019 14:45:16.947 -0400 INFO  Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0, executes=97, cumulative_hits=1706601&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;I also ran a search for the source I was interested in (forescout) by running &lt;CODE&gt;index=_internal host=indexer source="/opt/splunk/var/log/splunk/metrics.log" forescout&lt;/CODE&gt; and I came across logs from metrics.log that were part of the forescout index, source, and sourcetype. I saw groups like:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; per_index_thruput
 per_sourcetype_thruput
 per_source_thruput
 thruput
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;But I read from Splunk docs - Aboutmetricslog (I can't post links) that the thruput messages relate to the size of the "raw" items flowing through the data pipeline when it reaches the indexing pipeline, so this all takes place after the parsing and merging pipeline, so it's not of any help to me.&lt;/P&gt;

&lt;P&gt;If anyone has any ideas, please let me know!&lt;/P&gt;

&lt;P&gt;Thanks.&lt;/P&gt;

&lt;P&gt;7/23 edit:&lt;BR /&gt;
I came up with:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=forescout 
| eval latency=(_indextime-_time) 
| eval day=strftime(_time,"%b/%d")
| stats avg(latency), min(latency), max(latency) BY day
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;It's not exactly what I'm looking for but I think it will provide some insight into what I am trying to achieve.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2019 19:18:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-check-performance-implications-for-props-conf-changes/m-p/394747#M70452</guid>
      <dc:creator>jnguy_qmulos</dc:creator>
      <dc:date>2019-07-22T19:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to check performance implications for props.conf changes (parsing and merging pipeline)?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-check-performance-implications-for-props-conf-changes/m-p/394748#M70453</link>
      <description>&lt;P&gt;Check out this slide deck:&lt;BR /&gt;
&lt;A href="https://conf.splunk.com/files/2016/slides/jiffy-lube-quick-tune-up-for-your-splunk-environment.pdf"&gt;https://conf.splunk.com/files/2016/slides/jiffy-lube-quick-tune-up-for-your-splunk-environment.pdf&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Jul 2019 17:01:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-check-performance-implications-for-props-conf-changes/m-p/394748#M70453</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-07-27T17:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to check performance implications for props.conf changes (parsing and merging pipeline)?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-check-performance-implications-for-props-conf-changes/m-p/394749#M70454</link>
      <description>&lt;P&gt;The PDF you provided has some really good information. I am looking for something like the graph on slide 32, where we can maybe compare something like that before and after making the changes to props.conf for a particular sourcetype. Really want to see how/if performance improved from making the props.conf changes. I know Splunk says that it will but I was wondering if it was possible to come up with some actual metrics to back up the statement.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Aug 2019 13:02:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-check-performance-implications-for-props-conf-changes/m-p/394749#M70454</guid>
      <dc:creator>jnguy_qmulos</dc:creator>
      <dc:date>2019-08-16T13:02:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to check performance implications for props.conf changes (parsing and merging pipeline)?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-check-performance-implications-for-props-conf-changes/m-p/394750#M70455</link>
      <description>&lt;P&gt;Contact the authors.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Aug 2019 14:06:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-check-performance-implications-for-props-conf-changes/m-p/394750#M70455</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-08-16T14:06:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to check performance implications for props.conf changes (parsing and merging pipeline)?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-check-performance-implications-for-props-conf-changes/m-p/394751#M70456</link>
      <description>&lt;P&gt;I'll give that a shot, thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 16 Aug 2019 14:19:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-check-performance-implications-for-props-conf-changes/m-p/394751#M70456</guid>
      <dc:creator>jnguy_qmulos</dc:creator>
      <dc:date>2019-08-16T14:19:34Z</dc:date>
    </item>
  </channel>
</rss>

