<?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: How find a service that is not running on a server in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/unreadable-title/m-p/548586#M155617</link>
    <description>&lt;P&gt;.&lt;/P&gt;</description>
    <pubDate>Wed, 21 Apr 2021 21:21:45 GMT</pubDate>
    <dc:creator>Kksplunker</dc:creator>
    <dc:date>2021-04-21T21:21:45Z</dc:date>
    <item>
      <title>.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/unreadable-title/m-p/548530#M155596</link>
      <description />
      <pubDate>Wed, 21 Apr 2021 21:19:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/unreadable-title/m-p/548530#M155596</guid>
      <dc:creator>Kksplunker</dc:creator>
      <dc:date>2021-04-21T21:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: How find a service that is not running on a server</title>
      <link>https://community.splunk.com/t5/Splunk-Search/unreadable-title/m-p/548542#M155601</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/233615"&gt;@Kksplunker&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;try something like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="windows" State="*" service="CB" 
| eval host=upper(host)
| stats count BY host
| append [ | inputlookup itsi_entities | rename identifier.values as host | eval host=upper(host), count=0 | fields host count ] 
| stats sum(count) AS total BY host
| where total=0
| table total &lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 20 Apr 2021 06:44:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/unreadable-title/m-p/548542#M155601</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-04-20T06:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: How find a service that is not running on a server</title>
      <link>https://community.splunk.com/t5/Splunk-Search/unreadable-title/m-p/548586#M155617</link>
      <description>&lt;P&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Apr 2021 21:21:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/unreadable-title/m-p/548586#M155617</guid>
      <dc:creator>Kksplunker</dc:creator>
      <dc:date>2021-04-21T21:21:45Z</dc:date>
    </item>
    <item>
      <title>Re: How find a service that is not running on a server</title>
      <link>https://community.splunk.com/t5/Splunk-Search/unreadable-title/m-p/548587#M155618</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/233615"&gt;@Kksplunker&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;ok, let me understand:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;you have some servers with service="CB" and some others without this service,&lt;/LI&gt;&lt;LI&gt;you want the list of all servers without this service?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;it's easier, did you tried this?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="windows" State="*" NOT service="CB"
| ...&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 20 Apr 2021 12:56:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/unreadable-title/m-p/548587#M155618</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-04-20T12:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: How find a service that is not running on a server</title>
      <link>https://community.splunk.com/t5/Splunk-Search/unreadable-title/m-p/548588#M155619</link>
      <description>&lt;P&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Apr 2021 21:20:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/unreadable-title/m-p/548588#M155619</guid>
      <dc:creator>Kksplunker</dc:creator>
      <dc:date>2021-04-21T21:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: How find a service that is not running on a server</title>
      <link>https://community.splunk.com/t5/Splunk-Search/unreadable-title/m-p/548634#M155647</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/233615"&gt;@Kksplunker&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;sorry but I don't understand your need:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;if you want the servers, from your lookup, without the service CB, you can use my first answer,&lt;/LI&gt;&lt;LI&gt;if you want the servers, in all your infrastructure, without the service CB, you can use my second answer;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;what's your need?&lt;/P&gt;&lt;P&gt;In my opinion you need the first, in which there are the list of all servers with service=CB active that are sending logs and there's the match with the list of all your server from the lookup:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;total=0 means that you haven't servers with service=CB that are sending logs,&lt;/LI&gt;&lt;LI&gt;total&amp;gt;0 means that you have servers with service=CB that are sending logs,&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;if in your lookup you have more than Windows servers, you have to filter the lookup in the append.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 20 Apr 2021 16:35:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/unreadable-title/m-p/548634#M155647</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-04-20T16:35:36Z</dc:date>
    </item>
  </channel>
</rss>

