<?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: Dashboard to show process is &amp;quot;UP&amp;quot; or &amp;quot;DOWN&amp;quot; in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/505527#M33538</link>
    <description>&lt;P&gt;I know this an old thread, but It fits my needs perfectly.&amp;nbsp; &amp;nbsp;Is there a way to make the indication show the name of the field and an icon, or will this only display numbers and icons as mentioned earlier in the message?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 22 Jun 2020 15:16:46 GMT</pubDate>
    <dc:creator>dsmith1988</dc:creator>
    <dc:date>2020-06-22T15:16:46Z</dc:date>
    <item>
      <title>Dashboard to show process is "UP" or "DOWN"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/390137#M33530</link>
      <description>&lt;P&gt;I want to create a dashboard that simply reports a specific process is UP or DOWN. Preferable one that shows ON (GREEN) or OFF (Red).&lt;/P&gt;
&lt;P&gt;this is my search:&lt;/P&gt;
&lt;P&gt;Process is ON&lt;BR /&gt;index=myindex sourcetype=mysourcetype host=myhost type=process_monitor process=Myprocess status=True&lt;/P&gt;
&lt;P&gt;Process is DOWN&lt;BR /&gt;index=myindex sourcetype=mysourcetype host=myhost type=process_monitor process=Myprocess status=False&lt;/P&gt;
&lt;P&gt;the search is run every 5 minutes I want the dashboard to be in realtime.....&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jun 2020 22:25:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/390137#M33530</guid>
      <dc:creator>dperry</dc:creator>
      <dc:date>2020-06-22T22:25:09Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard to show process is "UP" or "DOWN"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/390138#M33531</link>
      <description>&lt;P&gt;Hi @dperry,&lt;/P&gt;

&lt;P&gt;Try this and adjust your base search accordingly&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;single&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=myindex sourcetype=mysourcetype host=myhost type=process_monitor process=Myprocess status=*
                |eval my_status=if(status=="True","On","Off")
                |eval range=if(status=="True","low","severe")&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-15m&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="colorBy"&amp;gt;value&amp;lt;/option&amp;gt;
        &amp;lt;option name="colorMode"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="field"&amp;gt;range&amp;lt;/option&amp;gt;
        &amp;lt;option name="numberPrecision"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeColors"&amp;gt;["0x53a051", "0x0877a6", "0xf8be34", "0xf1813f", "0xdc4e41"]&amp;lt;/option&amp;gt;
        &amp;lt;option name="rangeValues"&amp;gt;[0,30,70,100]&amp;lt;/option&amp;gt;
        &amp;lt;option name="showSparkline"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="showTrendIndicator"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.enabled"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.scales.shared"&amp;gt;1&amp;lt;/option&amp;gt;
        &amp;lt;option name="trellis.size"&amp;gt;medium&amp;lt;/option&amp;gt;
        &amp;lt;option name="trendColorInterpretation"&amp;gt;standard&amp;lt;/option&amp;gt;
        &amp;lt;option name="trendDisplayMode"&amp;gt;absolute&amp;lt;/option&amp;gt;
        &amp;lt;option name="unitPosition"&amp;gt;after&amp;lt;/option&amp;gt;
        &amp;lt;option name="useColors"&amp;gt;0&amp;lt;/option&amp;gt;
        &amp;lt;option name="useThousandSeparators"&amp;gt;1&amp;lt;/option&amp;gt;
      &amp;lt;/single&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 23 Jun 2018 10:34:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/390138#M33531</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2018-06-23T10:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard to show process is "UP" or "DOWN"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/390139#M33532</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;
I guess you are looking for some pointers here.  What I would do is start with three basic panels.&lt;BR /&gt;
1-Process is ON &lt;BR /&gt;
index=myindex sourcetype=mysourcetype host=myhost type=process_monitor process=Myprocess status=True&lt;BR /&gt;
Allow user to select process (Myprocess) through a drop down filter, default view to be set for all status=True processes.&lt;BR /&gt;
2-Process is DOWN&lt;BR /&gt;
index=myindex sourcetype=mysourcetype host=myhost type=process_monitor process=Myprocess status=False&lt;BR /&gt;
Allow user to select process (Myprocess) through a drop down filter, default view to be set for all status=False processes.&lt;BR /&gt;
3- All processes, exclude status in the base search code&lt;BR /&gt;
index=myindex sourcetype=mysourcetype host=myhost type=process_monitor process=Myprocess&lt;BR /&gt;
Allow user to select process (Myprocess) through a drop down filter AND also a drop down for the status, default view to be set for all processes.&lt;BR /&gt;
Now, based on these 3 basic searches you can build a lot of panels. For example,I can display a pie chart to show overall percentage distribution based on the status field values.&lt;BR /&gt;
To color your dashboards, you have 2 options -&lt;BR /&gt;
One is editing the simple XML and the default coloring options in the panel based on your splunk versions&lt;BR /&gt;
For example, in the 3 panel , which lists all processes , if I wish to colour the status feild green or red , I would use something like&lt;BR /&gt;
        &lt;FORMAT type="color" field="status"&gt;&lt;BR /&gt;
          &lt;COLORPALETTE type="map"&gt;{"False" :#FF7F50,"True" :#8ba649}&lt;/COLORPALETTE&gt;&lt;BR /&gt;
        &lt;/FORMAT&gt;&lt;BR /&gt;
If you do have access to the CSS/Js you can look  and need more coloring options than available in the default panels and simple xml you can refer these excellent links&lt;BR /&gt;
&lt;A href="https://answers.splunk.com/answers/482083/how-to-customize-my-dashboard-with-custom-color-an.html" target="_blank"&gt;https://answers.splunk.com/answers/482083/how-to-customize-my-dashboard-with-custom-color-an.html&lt;/A&gt;&lt;BR /&gt;
and this app which really helps a lot in having advanced coloring and visulizations&lt;BR /&gt;
&lt;A href="https://splunkbase.splunk.com/app/1603/" target="_blank"&gt;https://splunkbase.splunk.com/app/1603/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 20:08:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/390139#M33532</guid>
      <dc:creator>Sukisen1981</dc:creator>
      <dc:date>2020-09-29T20:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard to show process is "UP" or "DOWN"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/390140#M33533</link>
      <description>&lt;P&gt;Hi @dperry,&lt;BR /&gt;
Did this work for you ?&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jun 2018 13:20:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/390140#M33533</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2018-06-25T13:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard to show process is "UP" or "DOWN"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/390141#M33534</link>
      <description>&lt;P&gt;Hi renjith.nair....this works great....I have a question thugh...how would I make only two ranges.....&lt;/P&gt;

&lt;P&gt;True would output ONHOST (in green) and False output OFFHOST (RED)&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jun 2018 22:55:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/390141#M33534</guid>
      <dc:creator>dperry</dc:creator>
      <dc:date>2018-06-25T22:55:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard to show process is "UP" or "DOWN"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/390142#M33535</link>
      <description>&lt;P&gt;@dperry, I feel &lt;A href="https://splunkbase.splunk.com/app/3119/"&gt;Status Indicator Custom Visualization&lt;/A&gt; to show Icon/Color and Status of process. Refer to one of my older answer with a run anywhere search: &lt;A href="https://answers.splunk.com/answers/547381/dashboard-on-off-status.html"&gt;https://answers.splunk.com/answers/547381/dashboard-on-off-status.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;If you are on 6.6 or higher Single Value and Status Indicator will both support Trellis Layout so that you can show multiple process status with a single query. Refer to the following answer with Trellis option: &lt;A href="https://answers.splunk.com/answers/590581/refresh-data-in-table-by-collecting-token-on-click.html"&gt;https://answers.splunk.com/answers/590581/refresh-data-in-table-by-collecting-token-on-click.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;PS: Most Custom Visualizations do not support Drilldown out of the box, hence jQuery or manual enablement of Drilldown through Visualization code would be required. jQuery drilldown example has been provided in answer above.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 01:39:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/390142#M33535</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-06-26T01:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard to show process is "UP" or "DOWN"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/390143#M33536</link>
      <description>&lt;P&gt;Are these not displaying correctly now? I mean green &amp;amp; red for on and off? &lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 02:32:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/390143#M33536</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2018-06-26T02:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard to show process is "UP" or "DOWN"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/390144#M33537</link>
      <description>&lt;P&gt;Hi renjith,&lt;BR /&gt;
I am creating a dashboard based on the above code to monitor a java process on a remote windows server.&lt;BR /&gt;
I have created a new index "dev_pid" where i want the results to be stored.&lt;BR /&gt;
The output is showing no results found.&lt;/P&gt;

&lt;P&gt;Process_Id_Dashboard&lt;BR /&gt;
    &lt;ROW&gt;&lt;BR /&gt;
     &lt;PANEL&gt;&lt;BR /&gt;
       &lt;SINGLE&gt;&lt;BR /&gt;
         &lt;SEARCH&gt;&lt;BR /&gt;
           &lt;QUERY&gt;index=dev_pid host=IT00T437 type=process_monitor process=Java(TM) Platform SE binary status=*&lt;BR /&gt;
                 |eval my_status=if(status=="True","On","Off")&lt;BR /&gt;
                 |eval range=if(status=="True","low","severe")&lt;/QUERY&gt;&lt;BR /&gt;
           &lt;EARLIEST&gt;-24h&lt;/EARLIEST&gt;&lt;BR /&gt;
           &lt;LATEST&gt;now&lt;/LATEST&gt;&lt;BR /&gt;
           &lt;SAMPLERATIO&gt;1&lt;/SAMPLERATIO&gt;&lt;BR /&gt;
         &lt;/SEARCH&gt;&lt;BR /&gt;
         value&lt;BR /&gt;
         none&lt;BR /&gt;
         none&lt;BR /&gt;
         range&lt;BR /&gt;
         0&lt;BR /&gt;
         ["0x53a051", "0x0877a6", "0xf8be34", "0xf1813f", "0xdc4e41"]&lt;BR /&gt;
         [0,30,70,100]&lt;BR /&gt;
         1&lt;BR /&gt;
         1&lt;BR /&gt;
         0&lt;BR /&gt;
         1&lt;BR /&gt;
         medium&lt;BR /&gt;
         standard&lt;BR /&gt;
         absolute&lt;BR /&gt;
         after&lt;BR /&gt;
         0&lt;BR /&gt;
         1&lt;BR /&gt;
       &lt;/SINGLE&gt;&lt;BR /&gt;
     &lt;/PANEL&gt;&lt;/ROW&gt;&lt;/P&gt;

&lt;P&gt;It would be nice if you can help.&lt;/P&gt;

&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 21:52:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/390144#M33537</guid>
      <dc:creator>abhishek25</dc:creator>
      <dc:date>2020-09-29T21:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard to show process is "UP" or "DOWN"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/505527#M33538</link>
      <description>&lt;P&gt;I know this an old thread, but It fits my needs perfectly.&amp;nbsp; &amp;nbsp;Is there a way to make the indication show the name of the field and an icon, or will this only display numbers and icons as mentioned earlier in the message?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jun 2020 15:16:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/505527#M33538</guid>
      <dc:creator>dsmith1988</dc:creator>
      <dc:date>2020-06-22T15:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard to show process is "UP" or "DOWN"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/505649#M33556</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/148402"&gt;@dsmith1988&lt;/a&gt;&amp;nbsp;with Status Indicator custom viz. you can definitely use text as well. Refer to one of my older answers:&amp;nbsp;&lt;A href="https://community.splunk.com/t5/Dashboards-Visualizations/How-to-build-a-dashboard-with-single-panel-value-background/td-p/322794" target="_blank"&gt;https://community.splunk.com/t5/Dashboards-Visualizations/How-to-build-a-dashboard-with-single-panel-value-background/td-p/322794&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2020 05:22:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/505649#M33556</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2020-06-23T05:22:51Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard to show process is "UP" or "DOWN"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/505735#M33569</link>
      <description>&lt;P&gt;Okay,&amp;nbsp; so what I am trying to do is website monitoring.&amp;nbsp; I have the faliure color and icon working correctly.&amp;nbsp; What I am trying to do is get the site name to appear as the text inside the status box.&amp;nbsp; I am not wanting that value to determine the colors.&amp;nbsp; I will then grow this to include that site name as a drilldown from the status indicator.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!!&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2020 13:01:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/505735#M33569</guid>
      <dc:creator>dsmith1988</dc:creator>
      <dc:date>2020-06-23T13:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard to show process is "UP" or "DOWN"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/505765#M33571</link>
      <description>&lt;P&gt;Yes that is possible.&amp;nbsp; You need following fields&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;STRONG&gt;field for label&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;field for icon&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;field for&amp;nbsp;color&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;by aggregation field&lt;/STRONG&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;You can create label same as aggregation field by using eval before the aggregating/transforming command.&lt;/P&gt;&lt;P&gt;In your case&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Site Name&lt;/LI&gt;&lt;LI&gt;Failure or Success Icon&lt;/LI&gt;&lt;LI&gt;Failure or Success color&lt;/LI&gt;&lt;LI&gt;Site Name as aggregation&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval label=host
| stats last(label) as label last(icon) as icon last(color) as color last(cpu) as cpu by host&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then you can create Trellis layout to access host name during drilldown using &lt;STRONG&gt;$trellis.value$&lt;/STRONG&gt;.&lt;BR /&gt;&lt;BR /&gt;Also refer to another answer where I have used table with multi-value cells to create Tiles and then created drilldown for displaying more than 20 rows as Trellis introduces pagination.&lt;A href="https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-display-more-than-20-charts-at-a-time-using/td-p/298526/page/3" target="_blank"&gt;https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-display-more-than-20-charts-at-a-time-using/td-p/298526/page/3&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Do upvote the comment and answer if they helped you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2020 15:41:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/505765#M33571</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2020-06-23T15:41:09Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard to show process is "UP" or "DOWN"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/506180#M33628</link>
      <description>&lt;P&gt;I think I can get this to work based on your comment.&amp;nbsp; It does look like the JSON we are getting fron cloudwatch synthetics needs to be addressed.&amp;nbsp; The raw data is vvery limited.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you again for the help.&amp;nbsp; Very much appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2020 15:38:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-to-show-process-is-quot-UP-quot-or-quot-DOWN-quot/m-p/506180#M33628</guid>
      <dc:creator>dsmith1988</dc:creator>
      <dc:date>2020-06-25T15:38:09Z</dc:date>
    </item>
  </channel>
</rss>

