<?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: Servers availability status in Monitoring Splunk</title>
    <link>https://community.splunk.com/t5/Monitoring-Splunk/Servers-availability-status/m-p/517013#M8436</link>
    <description>&lt;P&gt;ohh don't you have another option that would not require me to log into server, because I need access and it will take a while for me to get it, i just need an option to visualize online servers and to trigger an alert whenever a server is unavailable&lt;/P&gt;</description>
    <pubDate>Mon, 31 Aug 2020 12:31:05 GMT</pubDate>
    <dc:creator>sphiwee</dc:creator>
    <dc:date>2020-08-31T12:31:05Z</dc:date>
    <item>
      <title>Servers availability status</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Servers-availability-status/m-p/501886#M8429</link>
      <description>&lt;P&gt;Hi, Is there any way to get the availability of the Servers (UP/Down) status in real time in Splunk Cloud/Enterprise ?&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2019 15:44:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Servers-availability-status/m-p/501886#M8429</guid>
      <dc:creator>vamshi04</dc:creator>
      <dc:date>2019-12-05T15:44:40Z</dc:date>
    </item>
    <item>
      <title>Re: Servers availability status</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Servers-availability-status/m-p/501887#M8430</link>
      <description>&lt;P&gt;Hi @vamshi04,&lt;BR /&gt;
are you speaking of Splunk Servers or target servers?&lt;/P&gt;

&lt;P&gt;If Splunk Servers, you can use the Splunk Monitoring Console (see at &lt;A href="https://docs.splunk.com/Documentation/Splunk/8.0.0/DMC/DMCoverview"&gt;https://docs.splunk.com/Documentation/Splunk/8.0.0/DMC/DMCoverview&lt;/A&gt; ).&lt;/P&gt;

&lt;P&gt;If you're speaking of the target servers, you could use again the Monitoring Console or create a dedicated dashboard.&lt;/P&gt;

&lt;P&gt;Ciao.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2019 15:54:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Servers-availability-status/m-p/501887#M8430</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2019-12-05T15:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: Servers availability status</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Servers-availability-status/m-p/501888#M8431</link>
      <description>&lt;P&gt;Hi @gcusello &lt;/P&gt;

&lt;P&gt;I am asking about the Infra Servers (Windows and Linux). I have all the performance metrics of those Servers (CPU/MEM/DISK) for Server Operational Dashbaord. I tried all the possible ways to find, whether the Servers are Up or Down. But no luck&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2019 16:14:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Servers-availability-status/m-p/501888#M8431</guid>
      <dc:creator>vamshi04</dc:creator>
      <dc:date>2019-12-05T16:14:22Z</dc:date>
    </item>
    <item>
      <title>Re: Servers availability status</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Servers-availability-status/m-p/501889#M8432</link>
      <description>&lt;P&gt;Hi @vamshi04,&lt;BR /&gt;
you should create a lookup containing all the server to monitor (e.g. perimeter.csv) with a column called host.&lt;BR /&gt;
then you could run a search like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal
| eval host=lower(host)
| stats count BY host
| append [ | inputlookup perimeter.csv | eval count=0, host=lower(host) | fields host count ]
| stats sum(count) AS total BY host
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;In this way all the hosts with total=0 are down and hosts with total&amp;gt;0 are up.&lt;BR /&gt;
You can create a dashboard to display in graphic mode the situation:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; &amp;lt;dashboard script="table_icons_rangemap.js" stylesheet="table_decorations.css"&amp;gt;
     &amp;lt;label&amp;gt;Table Icon Set (Rangemap)&amp;lt;/label&amp;gt;
     &amp;lt;description&amp;gt;Use Javascript and CSS in tables to convert rangemap results into icons.&amp;lt;/description&amp;gt;
     &amp;lt;row&amp;gt;
         &amp;lt;table id="table1"&amp;gt;
             &amp;lt;title&amp;gt;Render Icons based on rangemap result&amp;lt;/title&amp;gt;
             &amp;lt;search&amp;gt;
                 &amp;lt;query&amp;gt;
                     index=_internal
                    | eval host=lower(host)
                    | stats count BY host
                    | append [ | inputlookup perimeter.csv | eval count=0, host=lower(host) | fields host count ]
                    | stats sum(count) AS total BY host
                    | rangemap field=total elevated=0-0 low=1-10000000000000 default=severe
                 &amp;lt;/query&amp;gt;
                 &amp;lt;earliest&amp;gt;-1h&amp;lt;/earliest&amp;gt;
             &amp;lt;/search&amp;gt;
             &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
         &amp;lt;/table&amp;gt;
     &amp;lt;/row&amp;gt;
 &amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;in which there are notable:&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;in the first row a css and a js to call;&lt;/LI&gt;
&lt;LI&gt;the id=1 in table tag used by js;&lt;/LI&gt;
&lt;LI&gt;the rangemap command used to define the threesholds for the different levels and icons.&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;The instructions about css and js to use are in the &lt;STRONG&gt;Splunk Dashboard Examples&lt;/STRONG&gt; App  at &lt;STRONG&gt;Table Icon Set (Rangemap)&lt;/STRONG&gt; dashboard.&lt;/P&gt;

&lt;P&gt;Ciao.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2019 17:28:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Servers-availability-status/m-p/501889#M8432</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2019-12-05T17:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: Servers availability status</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Servers-availability-status/m-p/501890#M8433</link>
      <description>&lt;P&gt;Does it run for you?&lt;/P&gt;

&lt;P&gt;Ciao.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2019 08:04:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Servers-availability-status/m-p/501890#M8433</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2019-12-06T08:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: Servers availability status</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Servers-availability-status/m-p/516997#M8434</link>
      <description>&lt;P&gt;Hi i tried this and i can see my hosts but its not an appealing vizualization&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sphiwee_0-1598871227396.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/10572iAA1402254DF01FDF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sphiwee_0-1598871227396.png" alt="sphiwee_0-1598871227396.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Aug 2020 10:54:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Servers-availability-status/m-p/516997#M8434</guid>
      <dc:creator>sphiwee</dc:creator>
      <dc:date>2020-08-31T10:54:31Z</dc:date>
    </item>
    <item>
      <title>Re: Servers availability status</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Servers-availability-status/m-p/517011#M8435</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/223364"&gt;@sphiwee&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;did you followed the instructions in the Dashboard Examples App?&lt;/P&gt;&lt;P&gt;from your screenshot I see that you didin't configured the icons (css and js) for the graphical visualization.&lt;/P&gt;&lt;P&gt;To do this, see in the Dashboard Examples app (&lt;A href="https://splunkbase.splunk.com/app/1603/" target="_blank"&gt;https://splunkbase.splunk.com/app/1603/&lt;/A&gt;) how to do this.&lt;/P&gt;&lt;P&gt;In few words:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;you have to copy the files "table_icons_rangemap.js" and "table_decorations.css" (that you can find the Dashboard Examples App) in your $SPLUNK_HOME/etc/apps/your_app/appserver/static;&lt;/LI&gt;&lt;LI&gt;insert in the first row of your dashboard script="table_icons_rangemap.js" stylesheet="table_decorations.css";&lt;/LI&gt;&lt;LI&gt;then restart Splunk.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;In this way you can use the css and js that you copied and have in the Status column an Icon.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Mon, 31 Aug 2020 12:20:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Servers-availability-status/m-p/517011#M8435</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2020-08-31T12:20:39Z</dc:date>
    </item>
    <item>
      <title>Re: Servers availability status</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Servers-availability-status/m-p/517013#M8436</link>
      <description>&lt;P&gt;ohh don't you have another option that would not require me to log into server, because I need access and it will take a while for me to get it, i just need an option to visualize online servers and to trigger an alert whenever a server is unavailable&lt;/P&gt;</description>
      <pubDate>Mon, 31 Aug 2020 12:31:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Servers-availability-status/m-p/517013#M8436</guid>
      <dc:creator>sphiwee</dc:creator>
      <dc:date>2020-08-31T12:31:05Z</dc:date>
    </item>
  </channel>
</rss>

