<?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: Why is the processing missing data in Splunk_TA_NIX Process Monitoring? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-processing-missing-data-in-Splunk-TA-NIX-Process/m-p/314003#M58794</link>
    <description>&lt;P&gt;Depens on which role your instance is acting. We sepperate the workload, some Server are Searchheads and some are responsible only for Indexing the Data. You can have a Search- and Indexinginstance on one Hardware, but it's not recommanded. &lt;/P&gt;

&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/8.0.4/Overview/AboutSplunkEnterprisedeployments"&gt;https://docs.splunk.com/Documentation/Splunk/8.0.4/Overview/AboutSplunkEnterprisedeployments&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 25 May 2020 04:24:37 GMT</pubDate>
    <dc:creator>Spranta</dc:creator>
    <dc:date>2020-05-25T04:24:37Z</dc:date>
    <item>
      <title>Why is the processing missing data in Splunk_TA_NIX Process Monitoring?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-processing-missing-data-in-Splunk-TA-NIX-Process/m-p/313999#M58790</link>
      <description>&lt;P&gt;Hi, we are using the Splunk_TechnologyAdd-on(TA)_Linux(NIX) for process Monitoring.&lt;/P&gt;

&lt;P&gt;Recently I noticed that not all processes are listed. For example when I'm running the ps.sh script from the splunk_ta_nix and count the lines ps.sh |wc -l I've got more than 500 Processes. But in Splunk, i'm only able to find exact 150 Processes. It's the same on every host. &lt;/P&gt;

&lt;P&gt;So there are a lot of processes missing, I already opened a case about 3 weeks ago without any progress so far. &lt;/P&gt;

&lt;P&gt;Does anyone have the same issue? Or has anyone an idea how to whitelist the only needed process information?&lt;/P&gt;

&lt;P&gt;Thanks&lt;BR /&gt;
Alex  &lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 18:12:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-processing-missing-data-in-Splunk-TA-NIX-Process/m-p/313999#M58790</guid>
      <dc:creator>Spranta</dc:creator>
      <dc:date>2020-09-29T18:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the processing missing data in Splunk_TA_NIX Process Monitoring?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-processing-missing-data-in-Splunk-TA-NIX-Process/m-p/314000#M58791</link>
      <description>&lt;P&gt;I'm having the same issue here.  Did you find the solution?&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2020 12:35:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-processing-missing-data-in-Splunk-TA-NIX-Process/m-p/314000#M58791</guid>
      <dc:creator>dpark1113</dc:creator>
      <dc:date>2020-05-04T12:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the processing missing data in Splunk_TA_NIX Process Monitoring?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-processing-missing-data-in-Splunk-TA-NIX-Process/m-p/314001#M58792</link>
      <description>&lt;P&gt;Hi dpkar,&lt;BR /&gt;
yes, you have to install the TA also on the Indexer, we missed that. Afterwards everthing works fine.&lt;/P&gt;

&lt;P&gt;Just as hint, we found it very annoying that you can't filter which processes are really needed and you always have to index every single process. So we created another app which is filtering the really needed processes on the indexer and throw away any unneeded process information to keep down the license usage. &lt;/P&gt;

&lt;P&gt;props.conf&lt;BR /&gt;
[ps]&lt;BR /&gt;
TRANSFORMS-psfilter = setnull,psfilter&lt;/P&gt;

&lt;P&gt;[psfilter]&lt;BR /&gt;
REGEX = .&lt;EM&gt;(process1|process2|process3 ....).&lt;/EM&gt;&lt;BR /&gt;
DEST_KEY = queue&lt;BR /&gt;
FORMAT = indexQueue&lt;/P&gt;

&lt;P&gt;[setnull]&lt;BR /&gt;
REGEX = .&lt;BR /&gt;
DEST_KEY = queue&lt;BR /&gt;
FORMAT = nullQueue&lt;/P&gt;

&lt;P&gt;and you have to add the following props within the Splunk_TA_nix&lt;BR /&gt;
props.conf&lt;BR /&gt;
[ps]&lt;BR /&gt;
SHOULD_LINEMERGE = false&lt;BR /&gt;
LINE_BREAKER = ([\r\n]+)&lt;BR /&gt;
TRUNCATE=1000000&lt;BR /&gt;
DATETIME_CONFIG = CURRENT&lt;BR /&gt;
KV_MODE = none&lt;BR /&gt;
PREAMBLE_REGEX = USER               PID   PSR   pctCPU       CPUTIME  pctMEM     RSZ_KB     VSZ_KB   TTY      S       ELAPSED  COMMAND             ARGS&lt;BR /&gt;
EXTRACT-fields = (?\w+)\s+(?\d+)\s+(?[\w\?]+)\s+(?[\d.]+)\s+(?[\d.:-]+)\s+(?[\d.]+)\s+(?\d+)\s+(?\d+)\s+(?[\d\w\?\/]+)\s+(?\w+)\s+(?[\d:-]+)\s+(?[\w-.\d\/[]()]+)\s+(?.*)&lt;/P&gt;

&lt;P&gt;Maybe thats usefull for you to&lt;BR /&gt;
Best regards,&lt;BR /&gt;
Alex&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 05:12:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-processing-missing-data-in-Splunk-TA-NIX-Process/m-p/314001#M58792</guid>
      <dc:creator>Spranta</dc:creator>
      <dc:date>2020-09-30T05:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the processing missing data in Splunk_TA_NIX Process Monitoring?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-processing-missing-data-in-Splunk-TA-NIX-Process/m-p/314002#M58793</link>
      <description>&lt;P&gt;Thanks for you reply!  I didn't expect to get response. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Indexer means, Splunk Enterprise Server?  Sorry I'm new to Splunk.&lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2020 16:27:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-processing-missing-data-in-Splunk-TA-NIX-Process/m-p/314002#M58793</guid>
      <dc:creator>dpark1113</dc:creator>
      <dc:date>2020-05-20T16:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the processing missing data in Splunk_TA_NIX Process Monitoring?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-processing-missing-data-in-Splunk-TA-NIX-Process/m-p/314003#M58794</link>
      <description>&lt;P&gt;Depens on which role your instance is acting. We sepperate the workload, some Server are Searchheads and some are responsible only for Indexing the Data. You can have a Search- and Indexinginstance on one Hardware, but it's not recommanded. &lt;/P&gt;

&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/8.0.4/Overview/AboutSplunkEnterprisedeployments"&gt;https://docs.splunk.com/Documentation/Splunk/8.0.4/Overview/AboutSplunkEnterprisedeployments&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 May 2020 04:24:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Why-is-the-processing-missing-data-in-Splunk-TA-NIX-Process/m-p/314003#M58794</guid>
      <dc:creator>Spranta</dc:creator>
      <dc:date>2020-05-25T04:24:37Z</dc:date>
    </item>
  </channel>
</rss>

