<?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: Is it possible to stagger multiple checks in inputs.conf for a single app? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-stagger-multiple-checks-in-inputs-conf-for-a/m-p/126744#M26101</link>
    <description>&lt;P&gt;Nah, no luck so far. I don't think the functionality exists. My solution is the same as yours but slightly different notation.&lt;/P&gt;

&lt;P&gt;Many thanks anyway -- I'll keep probing!&lt;/P&gt;</description>
    <pubDate>Wed, 02 Jul 2014 15:06:13 GMT</pubDate>
    <dc:creator>alekksi</dc:creator>
    <dc:date>2014-07-02T15:06:13Z</dc:date>
    <item>
      <title>Is it possible to stagger multiple checks in inputs.conf for a single app?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-stagger-multiple-checks-in-inputs-conf-for-a/m-p/126739#M26096</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;I have an app that runs a small handful of scripts every 15 seconds. Instead of staggering the execution of these, they all run at the same time and cause single CPU hosts to hit 100% usage for a single second. The CPU usage is in itself not so much of a problem as they can happily cope with this, but it is causing charts to be a bit skewed with the number of spikes present.&lt;/P&gt;

&lt;P&gt;Is there any way of staggering these scripts in a way that the load is more balanced?&lt;/P&gt;

&lt;P&gt;Cheers!&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jul 2014 15:40:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-stagger-multiple-checks-in-inputs-conf-for-a/m-p/126739#M26096</guid>
      <dc:creator>alekksi</dc:creator>
      <dc:date>2014-07-01T15:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to stagger multiple checks in inputs.conf for a single app?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-stagger-multiple-checks-in-inputs-conf-for-a/m-p/126740#M26097</link>
      <description>&lt;P&gt;If you the cron notation for the interval, you can specify when to run them more precisely/&lt;/P&gt;

&lt;P&gt;see &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.1.1/admin/Inputsconf"&gt;http://docs.splunk.com/Documentation/Splunk/6.1.1/admin/Inputsconf&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;interval = [&amp;lt;number&amp;gt;|&amp;lt;cron schedule&amp;gt;]&lt;BR /&gt;
 * How often to execute the specified command (in seconds), or a valid cron schedule. &lt;BR /&gt;
 * NOTE: when a cron schedule is specified, the script is not executed on start-up.&lt;BR /&gt;
&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;example to have a script running every 15 minutes, but starting 2 minutes after the hour.&lt;BR /&gt;
&lt;CODE&gt;interval=2,17,32,47 * * * *&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;see &lt;A href="http://en.wikipedia.org/wiki/Cron"&gt;http://en.wikipedia.org/wiki/Cron&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jul 2014 16:10:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-stagger-multiple-checks-in-inputs-conf-for-a/m-p/126740#M26097</guid>
      <dc:creator>yannK</dc:creator>
      <dc:date>2014-07-01T16:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to stagger multiple checks in inputs.conf for a single app?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-stagger-multiple-checks-in-inputs-conf-for-a/m-p/126741#M26098</link>
      <description>&lt;P&gt;Thanks but unfortunately cron doesn't do sub-one minute execution. This is running every 15 seconds.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jul 2014 16:20:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-stagger-multiple-checks-in-inputs-conf-for-a/m-p/126741#M26098</guid>
      <dc:creator>alekksi</dc:creator>
      <dc:date>2014-07-01T16:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to stagger multiple checks in inputs.conf for a single app?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-stagger-multiple-checks-in-inputs-conf-for-a/m-p/126742#M26099</link>
      <description>&lt;P&gt;interval=2-59/4 * * * * * * would work for that as well&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jul 2014 16:25:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-stagger-multiple-checks-in-inputs-conf-for-a/m-p/126742#M26099</guid>
      <dc:creator>alekksi</dc:creator>
      <dc:date>2014-07-01T16:25:06Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to stagger multiple checks in inputs.conf for a single app?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-stagger-multiple-checks-in-inputs-conf-for-a/m-p/126743#M26100</link>
      <description>&lt;P&gt;My bad, I miss read 15 seconds as 15 minutes. I have no idea then.&lt;/P&gt;

&lt;P&gt;Is your solution working ?&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jul 2014 16:37:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-stagger-multiple-checks-in-inputs-conf-for-a/m-p/126743#M26100</guid>
      <dc:creator>yannK</dc:creator>
      <dc:date>2014-07-01T16:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to stagger multiple checks in inputs.conf for a single app?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-stagger-multiple-checks-in-inputs-conf-for-a/m-p/126744#M26101</link>
      <description>&lt;P&gt;Nah, no luck so far. I don't think the functionality exists. My solution is the same as yours but slightly different notation.&lt;/P&gt;

&lt;P&gt;Many thanks anyway -- I'll keep probing!&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2014 15:06:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Is-it-possible-to-stagger-multiple-checks-in-inputs-conf-for-a/m-p/126744#M26101</guid>
      <dc:creator>alekksi</dc:creator>
      <dc:date>2014-07-02T15:06:13Z</dc:date>
    </item>
  </channel>
</rss>

