<?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: What's the best way to create an alert to tell whether a windows server is shutdown or down ? in Alerting</title>
    <link>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/560174#M10658</link>
    <description>&lt;P&gt;if I have only one Linux host I'd then&amp;nbsp; &amp;nbsp;what is the search query for shutdown or down or up to alert creation&lt;/P&gt;</description>
    <pubDate>Tue, 20 Jul 2021 08:47:44 GMT</pubDate>
    <dc:creator>Vishal2</dc:creator>
    <dc:date>2021-07-20T08:47:44Z</dc:date>
    <item>
      <title>What's the best way to create an alert to tell whether a windows server is shutdown or down ?</title>
      <link>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/559963#M10648</link>
      <description>&lt;P&gt;Can you provide an example of a search query or script I can use to tell if a windows server is shutdown or down.i am looking for the best way to set up an shutdown or down status alert for windows server.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jul 2021 04:08:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/559963#M10648</guid>
      <dc:creator>Vishal2</dc:creator>
      <dc:date>2021-07-19T04:08:47Z</dc:date>
    </item>
    <item>
      <title>Re: What's the best way to create an alert to tell whether a windows server is shutdown or down ?</title>
      <link>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/559965#M10649</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/236452"&gt;@Vishal2&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;May be this would work based on Windows EventCodes description.&amp;nbsp; Assuming you have Windows add-on running and indexing the WinEventLogs from these windows servers that you want to find when they shutdown.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=&amp;lt;your_index&amp;gt; source=WinEventLog* EventCode=41 OR	EventCode=1074 OR EventCode=6006 OR EventCode=6008 
| stats count by host 
| where count &amp;gt; 1&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE width="975"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT size="5"&gt;&lt;STRONG&gt;Event ID&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT size="5"&gt;&lt;STRONG&gt;Description&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;41&lt;/TD&gt;&lt;TD&gt;The system has rebooted without cleanly shutting down first. This error could be caused if the system stopped responding, crashed, or lost power unexpectedly.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1074&lt;/TD&gt;&lt;TD&gt;Logged when an app (ex: Windows Update) causes the system to restart, or when a user initiates a restart or shutdown.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6006&lt;/TD&gt;&lt;TD&gt;Logged as a clean shutdown. It gives the message "The Event log service was stopped".&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6008&lt;/TD&gt;&lt;TD&gt;Logged as a dirty shutdown. It gives the message "The previous system shutdown at time on date was unexpected".&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;---&lt;/P&gt;&lt;P&gt;An upvote would be appreciated and Accept solution if this reply helps!&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jul 2021 04:26:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/559965#M10649</guid>
      <dc:creator>venkatasri</dc:creator>
      <dc:date>2021-07-19T04:26:19Z</dc:date>
    </item>
    <item>
      <title>Re: What's the best way to create an alert to tell whether a windows server is shutdown or down ?</title>
      <link>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/559985#M10650</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/236452"&gt;@Vishal2&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;the best approach is to create a lookup (called e.g. perimeter.csv) containing all the hosts to monitor.&lt;/P&gt;&lt;P&gt;Then you could run a simple search like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| metasearch index=_internal
| eval host=lower(host)
| stats count BY host
| append [ | inputlookup perimeter.csv | eval host=lower(host), count=0 | fields host count ]
| stats sum(count) AS total BY host
| where total=0&lt;/LI-CODE&gt;&lt;P&gt;using this search (without the last row) you can also create a dashboard displaying the status of all the monitored hosts:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| metasearch index=_internal
| eval host=lower(host)
| stats count BY host
| append [ | inputlookup perimeter.csv | eval host=lower(host), count=0 | fields host count ]
| stats sum(count) AS total BY host
| eval status=if(total=0,"Down","Up")
| table host status&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jul 2021 07:09:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/559985#M10650</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-07-19T07:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: What's the best way to create an alert to tell whether a windows server is shutdown or down ?</title>
      <link>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/559995#M10651</link>
      <description>&lt;P&gt;Is it used for linux servers ??&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jul 2021 07:51:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/559995#M10651</guid>
      <dc:creator>Vishal2</dc:creator>
      <dc:date>2021-07-19T07:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: What's the best way to create an alert to tell whether a windows server is shutdown or down ?</title>
      <link>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/559997#M10652</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/236452"&gt;@Vishal2&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;it's not relevant the kind of server because it uses the Splunk Forwarder's logs.&lt;/P&gt;&lt;P&gt;In this way you're sure that if the server is up and the Forwarder is running you have logs.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jul 2021 08:00:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/559997#M10652</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-07-19T08:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: What's the best way to create an alert to tell whether a windows server is shutdown or down ?</title>
      <link>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/559998#M10653</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Thanks for reply&lt;/P&gt;&lt;P&gt;Please can you provide exact querys for alert creation if windows and Linux servers shutdown.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jul 2021 08:10:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/559998#M10653</guid>
      <dc:creator>Vishal2</dc:creator>
      <dc:date>2021-07-19T08:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: What's the best way to create an alert to tell whether a windows server is shutdown or down ?</title>
      <link>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/559999#M10654</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/236452"&gt;@Vishal2&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;as I said, it isn't relevant if the Operative System is Windows or Linux, it's only relevant the list of hosts to monitor that you put in the perimeter.csv lookup.&lt;/P&gt;&lt;P&gt;If you put only windows servers, you'll monitor only windows servers!&lt;/P&gt;&lt;P&gt;if you like (but I think that's unuseful) you can create two perimeters files (called e.g. win_perimeter.csv and x_perimeter.csv to separately monitor winsows and Linux server and create two different alerts, one for windows and one for Linux, but I don't like this.&lt;/P&gt;&lt;P&gt;If you like you can also insert in the perimeter.csv file the information about the Operative System (so you'll have in this lookup two fields "host", "os") and display it in the alert search:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| metasearch index=_internal
| eval host=lower(host)
| stats count BY host
| append [ | inputlookup perimeter.csv | eval host=lower(host), count=0 | fields host os count ]
| stats sum(count) AS total values(os) AS os BY host
| where total=0
| table host os&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jul 2021 08:21:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/559999#M10654</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-07-19T08:21:11Z</dc:date>
    </item>
    <item>
      <title>Re: What's the best way to create an alert to tell whether a windows server is shutdown or down ?</title>
      <link>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/560174#M10658</link>
      <description>&lt;P&gt;if I have only one Linux host I'd then&amp;nbsp; &amp;nbsp;what is the search query for shutdown or down or up to alert creation&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jul 2021 08:47:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/560174#M10658</guid>
      <dc:creator>Vishal2</dc:creator>
      <dc:date>2021-07-20T08:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: What's the best way to create an alert to tell whether a windows server is shutdown or down ?</title>
      <link>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/560176#M10659</link>
      <description>&lt;P&gt;i&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/236452"&gt;@Vishal2&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;as I said, the operative systems isn't relevant, so if you have to monitor many windows servers and one Linux server, you can add also a Linux hostname in the perimeter.csv lookup containing all the windows servers.&lt;/P&gt;&lt;P&gt;If instead you have only one server to monitor, you can use a simpler search:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=_internal host=my_hostname&lt;/LI-CODE&gt;&lt;P&gt;My hint is to build a complete control using my previous answer and the perimeter.csv, so, when you'll have more servers to monitor, you're already ready.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jul 2021 09:10:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/560176#M10659</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-07-20T09:10:28Z</dc:date>
    </item>
    <item>
      <title>Re: What's the best way to create an alert to tell whether a windows server is shutdown or down ?</title>
      <link>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/560184#M10660</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can you post that alert settings...?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jul 2021 10:05:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/560184#M10660</guid>
      <dc:creator>Vishal2</dc:creator>
      <dc:date>2021-07-20T10:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: What's the best way to create an alert to tell whether a windows server is shutdown or down ?</title>
      <link>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/560186#M10661</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/236452"&gt;@Vishal2&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;settings I use in this alert (that I configure in every installation I do!) are:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;search is the one in my previous answers,&lt;/LI&gt;&lt;LI&gt;Alert Type: Scheduled&lt;/LI&gt;&lt;LI&gt;Time Ranhe depends on your requirements, I usually use 5 minutes (300 seconds).&lt;/LI&gt;&lt;LI&gt;Frequency, depends on the time frafe and it's every 5 minutes, I usually use this cron expression:&lt;UL&gt;&lt;LI&gt;*/5 * * * *&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Expires: 24 hours&lt;/LI&gt;&lt;LI&gt;Trigger Alert when: Number of results=0&lt;/LI&gt;&lt;LI&gt;Trigger: Once&lt;/LI&gt;&lt;LI&gt;Throttle: depends on your reaction time, e.g. 1 hour&lt;/LI&gt;&lt;LI&gt;Add Actions:&lt;UL&gt;&lt;LI&gt;Add to Triggered Alerts with High Severity&lt;/LI&gt;&lt;LI&gt;email or a script that opens a case on your troubleticketing system&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jul 2021 10:18:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/560186#M10661</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-07-20T10:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: What's the best way to create an alert to tell whether a windows server is shutdown or down ?</title>
      <link>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/560223#M10666</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you are talking about the logs monitoring but if universal forwarer is failed that time logs not coming to splunk, I don't need that, I need server shutdown or down related query&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jul 2021 15:14:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/560223#M10666</guid>
      <dc:creator>Vishal2</dc:creator>
      <dc:date>2021-07-20T15:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: What's the best way to create an alert to tell whether a windows server is shutdown or down ?</title>
      <link>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/560227#M10667</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/236452"&gt;@Vishal2&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;if Forwarder isn't sending logs, you cannot monitor your host, so it's better to monitor Forwarder: if you have an alert you have two choices:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;forwarder down, and you must interviene otherwise you're blind,&lt;/LI&gt;&lt;LI&gt;host down, and you must intervene.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;in both cases you must intervene!&lt;/P&gt;&lt;P&gt;If you want, but I don't hint this: instead of the index=_internal, you can use index=* but it's the same thing.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jul 2021 15:31:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/560227#M10667</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-07-20T15:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: What's the best way to create an alert to tell whether a windows server is shutdown or down ?</title>
      <link>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/560919#M10685</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/163730"&gt;@venkatasri&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please post the query for Linux server&amp;nbsp; as well ....&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 05:46:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/560919#M10685</guid>
      <dc:creator>Vishal2</dc:creator>
      <dc:date>2021-07-27T05:46:14Z</dc:date>
    </item>
    <item>
      <title>Re: What's the best way to create an alert to tell whether a windows server is shutdown or down ?</title>
      <link>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/560920#M10686</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/236452"&gt;@Vishal2&lt;/a&gt;&amp;nbsp; As&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp; answered without forwarder installed on Linux it's not possible. You have the solution already. As your original query was already answered regarding windows you could Accept the solution and open a new post for someone to answer related to linux.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 05:54:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/560920#M10686</guid>
      <dc:creator>venkatasri</dc:creator>
      <dc:date>2021-07-27T05:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: What's the best way to create an alert to tell whether a windows server is shutdown or down ?</title>
      <link>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/560925#M10687</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/163730"&gt;@venkatasri&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Windows query is under testing once it's successful I accept the solution &amp;amp; coming to Linux, Forwader is already installed and data is reporting to splunk.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 06:09:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/560925#M10687</guid>
      <dc:creator>Vishal2</dc:creator>
      <dc:date>2021-07-27T06:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: What's the best way to create an alert to tell whether a windows server is shutdown or down ?</title>
      <link>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/560936#M10688</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/236452"&gt;@Vishal2&lt;/a&gt;&amp;nbsp;You have the solution from&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;Already for Linux/Windows which is a lookup based. Hope that helps!&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 06:38:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/560936#M10688</guid>
      <dc:creator>venkatasri</dc:creator>
      <dc:date>2021-07-27T06:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: What's the best way to create an alert to tell whether a windows server is shutdown or down ?</title>
      <link>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/561168#M10693</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/163730"&gt;@venkatasri&lt;/a&gt;, &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;By using event codes it's working but can please post by using lookup containing the all the hosts to monitor.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jul 2021 10:39:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/561168#M10693</guid>
      <dc:creator>Vishal2</dc:creator>
      <dc:date>2021-07-28T10:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: What's the best way to create an alert to tell whether a windows server is shutdown or down ?</title>
      <link>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/670269#M15541</link>
      <description>&lt;P&gt;Power Shell for linux?&lt;/P&gt;&lt;P&gt;cat filename | grep or awk?&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 08:54:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/670269#M15541</guid>
      <dc:creator>I-C-U</dc:creator>
      <dc:date>2023-11-30T08:54:31Z</dc:date>
    </item>
    <item>
      <title>Re: What's the best way to create an alert to tell whether a windows server is shutdown or down ?</title>
      <link>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/670270#M15542</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/236452"&gt;@Vishal2&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;you already have the solution:&amp;nbsp;you have to create a lookup containing the list of monitored hosts and run the above search, what's your doubt?&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;P.S.: Karma Points are appreciated by all the contributors &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 09:12:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/What-s-the-best-way-to-create-an-alert-to-tell-whether-a-windows/m-p/670270#M15542</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-11-30T09:12:46Z</dc:date>
    </item>
  </channel>
</rss>

