<?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: In Forescout, trying to pull the descriptions for each of the compliance types by hosts in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/In-Forescout-trying-to-pull-the-descriptions-for-each-of-the/m-p/235857#M70043</link>
    <description>&lt;P&gt;Thank you @sundareshr!&lt;/P&gt;</description>
    <pubDate>Fri, 07 Oct 2016 14:24:19 GMT</pubDate>
    <dc:creator>tmaltizo</dc:creator>
    <dc:date>2016-10-07T14:24:19Z</dc:date>
    <item>
      <title>In Forescout, trying to pull the descriptions for each of the compliance types by hosts</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-Forescout-trying-to-pull-the-descriptions-for-each-of-the/m-p/235851#M70037</link>
      <description>&lt;P&gt;We have the following sourcetypes in index=forescout.&lt;BR /&gt;
fs_av_compliance&lt;BR /&gt;
fs_DLP_compliance&lt;BR /&gt;
fs_fw_compliance&lt;BR /&gt;
fs_encryption_compliance&lt;/P&gt;

&lt;P&gt;They each have the field "description". How do I list each of the descriptions by host? I understand there may be multiple descriptions for any of the sourcetypes, but we can always dedup them....&lt;/P&gt;

&lt;P&gt;Here's where I got stuck:&lt;/P&gt;

&lt;P&gt;index=forescout (sourcetype=fs_av_compliance) OR (sourcetype=fs_DLP_compliance) OR (sourcetype=fs_fw_compliance) OR (sourcetype=fs_encryption_compliance) | fields src_nt_host description | chart values(description) over src_nt_host by sourcetype | table src_nt_host fs_av_compliance fs_DLP_compliance fs_fw_compliance fs_encryption_compliance&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 11:18:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-Forescout-trying-to-pull-the-descriptions-for-each-of-the/m-p/235851#M70037</guid>
      <dc:creator>tmaltizo</dc:creator>
      <dc:date>2020-09-29T11:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: In Forescout, trying to pull the descriptions for each of the compliance types by hosts</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-Forescout-trying-to-pull-the-descriptions-for-each-of-the/m-p/235852#M70038</link>
      <description>&lt;P&gt;How about one of these&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=forescout (sourcetype=fs_av_compliance) OR (sourcetype=fs_DLP_compliance) OR (sourcetype=fs_fw_compliance) OR (sourcetype=fs_encryption_compliance) | fields src_nt_host description | stats values(description) as description by  src_nt_host sourcetype | mvexpand description
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;*&lt;STRONG&gt;&lt;EM&gt;OR&lt;/EM&gt;&lt;/STRONG&gt;*&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=forescout (sourcetype=fs_av_compliance) OR (sourcetype=fs_DLP_compliance) OR (sourcetype=fs_fw_compliance) OR (sourcetype=fs_encryption_compliance) | fields src_nt_host description | stats values(description) as description by  src_nt_host | mvexpand description
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 06 Oct 2016 19:06:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-Forescout-trying-to-pull-the-descriptions-for-each-of-the/m-p/235852#M70038</guid>
      <dc:creator>sundareshr</dc:creator>
      <dc:date>2016-10-06T19:06:58Z</dc:date>
    </item>
    <item>
      <title>Re: In Forescout, trying to pull the descriptions for each of the compliance types by hosts</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-Forescout-trying-to-pull-the-descriptions-for-each-of-the/m-p/235853#M70039</link>
      <description>&lt;P&gt;Thanks for your response &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/140181"&gt;@sundareshr&lt;/a&gt;!&lt;/P&gt;

&lt;P&gt;How can I format the result so that the description falls under the appropriate sourcetype...&lt;/P&gt;

&lt;P&gt;src_nt_host     fs_av_compliance     fs_DLP_compliance     fs_fw_compliance           fs_encryption_compliance&lt;BR /&gt;
ABCD1234       AV running.....           DLP installed...             FW is up and running    Encryption is running....&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 11:18:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-Forescout-trying-to-pull-the-descriptions-for-each-of-the/m-p/235853#M70039</guid>
      <dc:creator>tmaltizo</dc:creator>
      <dc:date>2020-09-29T11:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: In Forescout, trying to pull the descriptions for each of the compliance types by hosts</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-Forescout-trying-to-pull-the-descriptions-for-each-of-the/m-p/235854#M70040</link>
      <description>&lt;P&gt;Like this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=forescout (sourcetype=fs_av_compliance) OR (sourcetype=fs_DLP_compliance) OR (sourcetype=fs_fw_compliance) OR (sourcetype=fs_encryption_compliance) | chart values(description) over src_nt_host by sourcetype
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 06 Oct 2016 19:51:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-Forescout-trying-to-pull-the-descriptions-for-each-of-the/m-p/235854#M70040</guid>
      <dc:creator>sundareshr</dc:creator>
      <dc:date>2016-10-06T19:51:55Z</dc:date>
    </item>
    <item>
      <title>Re: In Forescout, trying to pull the descriptions for each of the compliance types by hosts</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-Forescout-trying-to-pull-the-descriptions-for-each-of-the/m-p/235855#M70041</link>
      <description>&lt;P&gt;That's it! Thank you @sundareshr!&lt;/P&gt;

&lt;P&gt;Can we go a step further and capture the latest description per sourcetype if there are more than one?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2016 20:00:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-Forescout-trying-to-pull-the-descriptions-for-each-of-the/m-p/235855#M70041</guid>
      <dc:creator>tmaltizo</dc:creator>
      <dc:date>2016-10-06T20:00:24Z</dc:date>
    </item>
    <item>
      <title>Re: In Forescout, trying to pull the descriptions for each of the compliance types by hosts</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-Forescout-trying-to-pull-the-descriptions-for-each-of-the/m-p/235856#M70042</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; index=forescout (sourcetype=fs_av_compliance) OR (sourcetype=fs_DLP_compliance) OR (sourcetype=fs_fw_compliance) OR (sourcetype=fs_encryption_compliance) | chart values(description) AS Descriptions latest(description) as Latest_Description over src_nt_host by sourcetype
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 06 Oct 2016 20:02:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-Forescout-trying-to-pull-the-descriptions-for-each-of-the/m-p/235856#M70042</guid>
      <dc:creator>sundareshr</dc:creator>
      <dc:date>2016-10-06T20:02:44Z</dc:date>
    </item>
    <item>
      <title>Re: In Forescout, trying to pull the descriptions for each of the compliance types by hosts</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-Forescout-trying-to-pull-the-descriptions-for-each-of-the/m-p/235857#M70043</link>
      <description>&lt;P&gt;Thank you @sundareshr!&lt;/P&gt;</description>
      <pubDate>Fri, 07 Oct 2016 14:24:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-Forescout-trying-to-pull-the-descriptions-for-each-of-the/m-p/235857#M70043</guid>
      <dc:creator>tmaltizo</dc:creator>
      <dc:date>2016-10-07T14:24:19Z</dc:date>
    </item>
  </channel>
</rss>

