<?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: Log.cfg - reduce frequency of INFO StatusMgr messages in metrics.log due to disk space in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Log-cfg-reduce-frequency-of-INFO-StatusMgr-messages-in-metrics/m-p/102418#M21489</link>
    <description>&lt;P&gt;5.0.5, actually.  Thanks&lt;/P&gt;</description>
    <pubDate>Thu, 17 Oct 2013 14:06:33 GMT</pubDate>
    <dc:creator>gsawyer1</dc:creator>
    <dc:date>2013-10-17T14:06:33Z</dc:date>
    <item>
      <title>Log.cfg - reduce frequency of INFO StatusMgr messages in metrics.log due to disk space</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Log-cfg-reduce-frequency-of-INFO-StatusMgr-messages-in-metrics/m-p/102413#M21484</link>
      <description>&lt;P&gt;I don't have a lot of disk space on my indexers.  I know that i can reduce the amount of logging and number of metrics.log files created by manipulating the appenders section of log.cfg, but the following messages still get logged far too frequently:&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;-0400 INFO StatusMgr - sourcePort=XXXX, ssl=nnnnnn, statusee=TcpInputProcessor&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;Apparently these get logged constantly, and although they help when a connection is lost, I honestly don't need to see them as long as everything is working fine.  How can I reduce just this specific message type (INFO StatusMgr), or eliminate it altogether, and thereby save on disk space?&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2013 19:50:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Log-cfg-reduce-frequency-of-INFO-StatusMgr-messages-in-metrics/m-p/102413#M21484</guid>
      <dc:creator>gsawyer1</dc:creator>
      <dc:date>2013-10-16T19:50:10Z</dc:date>
    </item>
    <item>
      <title>Re: Log.cfg - reduce frequency of INFO StatusMgr messages in metrics.log due to disk space</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Log-cfg-reduce-frequency-of-INFO-StatusMgr-messages-in-metrics/m-p/102414#M21485</link>
      <description>&lt;P&gt;From &lt;/P&gt;

&lt;P&gt;Manager&amp;gt;System Settings&amp;gt;System Logging&amp;gt;StatusMgr set the level to 'warn'.  &lt;/P&gt;

&lt;P&gt;That should eliminate the 'info' messages on a temporary basis.&lt;/P&gt;

&lt;P&gt;For a permanent solution try a nullQueue:&lt;/P&gt;

&lt;P&gt;I don't have any of the log entries you posted, but I was able to remove index entries that can be found with this search:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal | rex field=_raw ".*\s(?&amp;lt;infometrixs&amp;gt;INFO\s+Metrics).*$" | search infometrixs="INFO  Metrics"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Once the following edits are made to the system/local/props.conf and transforms.conf you should see the above search start to produce no-more-results from the time of splunkd restart.&lt;/P&gt;

&lt;P&gt;Props.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[splunkd]
TRANSFORMS-StatusMgr = setmetrixnull
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Transforms.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[setmetrixnull]
REGEX = (?msi).*\sINFO\s+Metrics.*$
DEST_KEY = queue
FORMAT = nullQueue
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;In your case, if your post is accurate, you should change  &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;REGEX = (?msi).*\sINFO\s+Metrics.*$
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;To  &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;REGEX = (?msi).*\sINFO\s+StatusMgr.*$
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 16 Oct 2013 19:59:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Log-cfg-reduce-frequency-of-INFO-StatusMgr-messages-in-metrics/m-p/102414#M21485</guid>
      <dc:creator>lukejadamec</dc:creator>
      <dc:date>2013-10-16T19:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: Log.cfg - reduce frequency of INFO StatusMgr messages in metrics.log due to disk space</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Log-cfg-reduce-frequency-of-INFO-StatusMgr-messages-in-metrics/m-p/102415#M21486</link>
      <description>&lt;P&gt;That is only temporary, according to the documentation, the best place to make this change is in log.cfg or log-local.cfg. So if I set the logging level to WARN, then that is the lowest level of log message importance that I'll see in metrics.log and Splunkd.log for this component? If that's so, it sure would help to have this spelled out plainly in the documentation....&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2013 20:59:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Log-cfg-reduce-frequency-of-INFO-StatusMgr-messages-in-metrics/m-p/102415#M21486</guid>
      <dc:creator>gsawyer1</dc:creator>
      <dc:date>2013-10-16T20:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: Log.cfg - reduce frequency of INFO StatusMgr messages in metrics.log due to disk space</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Log-cfg-reduce-frequency-of-INFO-StatusMgr-messages-in-metrics/m-p/102416#M21487</link>
      <description>&lt;P&gt;But what if, by eliminating all INFO messages in metrics.log, I'll be missing something else that I might have wanted to see? I really want to know if its possible to get more granular than that, to eliminate JUST these specific messages:&lt;/P&gt;

&lt;P&gt;-0400 INFO StatusMgr - sourcePort=XXXX, ssl=nnnnnn, statusee=TcpInputProcessor&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2013 21:00:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Log-cfg-reduce-frequency-of-INFO-StatusMgr-messages-in-metrics/m-p/102416#M21487</guid>
      <dc:creator>gsawyer1</dc:creator>
      <dc:date>2013-10-16T21:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: Log.cfg - reduce frequency of INFO StatusMgr messages in metrics.log due to disk space</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Log-cfg-reduce-frequency-of-INFO-StatusMgr-messages-in-metrics/m-p/102417#M21488</link>
      <description>&lt;P&gt;Which version of Splunk are you using?&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2013 21:21:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Log-cfg-reduce-frequency-of-INFO-StatusMgr-messages-in-metrics/m-p/102417#M21488</guid>
      <dc:creator>lukejadamec</dc:creator>
      <dc:date>2013-10-16T21:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: Log.cfg - reduce frequency of INFO StatusMgr messages in metrics.log due to disk space</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Log-cfg-reduce-frequency-of-INFO-StatusMgr-messages-in-metrics/m-p/102418#M21489</link>
      <description>&lt;P&gt;5.0.5, actually.  Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2013 14:06:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Log-cfg-reduce-frequency-of-INFO-StatusMgr-messages-in-metrics/m-p/102418#M21489</guid>
      <dc:creator>gsawyer1</dc:creator>
      <dc:date>2013-10-17T14:06:33Z</dc:date>
    </item>
  </channel>
</rss>

