<?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 Looking for a method to display process progress in a dashboard in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Looking-for-a-method-to-display-process-progress-in-a-dashboard/m-p/222876#M13830</link>
    <description>&lt;P&gt;I have a process that I need to create a dashboard to monitor. The process logs to a file and contains easily searchable segment identifiers, such as:&lt;/P&gt;

&lt;P&gt;Process started&lt;BR /&gt;
Download started&lt;BR /&gt;
bla&lt;BR /&gt;
bla&lt;BR /&gt;
Download completed&lt;BR /&gt;
Import started&lt;BR /&gt;
bla&lt;BR /&gt;
bla &lt;BR /&gt;
bla&lt;BR /&gt;
Import completed&lt;BR /&gt;
etc&lt;BR /&gt;
etc&lt;/P&gt;

&lt;P&gt;What is the best method of graphically displaying this on a dashboard? My thoughts were either a progress bar, or as a table listing each major step and an image that changes indicating the step's state (not started, running, finished). I haven't been able to figure out either one, although I got a lot closer on the table.&lt;/P&gt;

&lt;P&gt;Any advice will be greatly appreciated!&lt;/P&gt;

&lt;P&gt;Thank you in advance,&lt;/P&gt;

&lt;P&gt;Jeremy&lt;/P&gt;</description>
    <pubDate>Mon, 11 Jan 2016 21:26:34 GMT</pubDate>
    <dc:creator>jwinderDDS</dc:creator>
    <dc:date>2016-01-11T21:26:34Z</dc:date>
    <item>
      <title>Looking for a method to display process progress in a dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Looking-for-a-method-to-display-process-progress-in-a-dashboard/m-p/222876#M13830</link>
      <description>&lt;P&gt;I have a process that I need to create a dashboard to monitor. The process logs to a file and contains easily searchable segment identifiers, such as:&lt;/P&gt;

&lt;P&gt;Process started&lt;BR /&gt;
Download started&lt;BR /&gt;
bla&lt;BR /&gt;
bla&lt;BR /&gt;
Download completed&lt;BR /&gt;
Import started&lt;BR /&gt;
bla&lt;BR /&gt;
bla &lt;BR /&gt;
bla&lt;BR /&gt;
Import completed&lt;BR /&gt;
etc&lt;BR /&gt;
etc&lt;/P&gt;

&lt;P&gt;What is the best method of graphically displaying this on a dashboard? My thoughts were either a progress bar, or as a table listing each major step and an image that changes indicating the step's state (not started, running, finished). I haven't been able to figure out either one, although I got a lot closer on the table.&lt;/P&gt;

&lt;P&gt;Any advice will be greatly appreciated!&lt;/P&gt;

&lt;P&gt;Thank you in advance,&lt;/P&gt;

&lt;P&gt;Jeremy&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2016 21:26:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Looking-for-a-method-to-display-process-progress-in-a-dashboard/m-p/222876#M13830</guid>
      <dc:creator>jwinderDDS</dc:creator>
      <dc:date>2016-01-11T21:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for a method to display process progress in a dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Looking-for-a-method-to-display-process-progress-in-a-dashboard/m-p/222877#M13831</link>
      <description>&lt;P&gt;Hi jwinderDDS,&lt;/P&gt;

&lt;P&gt;First get this messages into a field (let's say &lt;CODE&gt;progress&lt;/CODE&gt;) using field extractions, see the docs for more details &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.3.2/Knowledge/ExtractfieldsinteractivelywithIFX"&gt;http://docs.splunk.com/Documentation/Splunk/6.3.2/Knowledge/ExtractfieldsinteractivelywithIFX&lt;/A&gt;&lt;BR /&gt;
Next create a automatic lookup base on this new field using a lookup table like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;progress,state
Process started,started
Download started,running
Download completed,running
Import started,running
Import completed,finished
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;See the docs for more details on lookups and how they work &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.3.2/Knowledge/Addfieldsfromexternaldatasources"&gt;http://docs.splunk.com/Documentation/Splunk/6.3.2/Knowledge/Addfieldsfromexternaldatasources&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Once this is setup you can display the &lt;CODE&gt;state&lt;/CODE&gt; field in your dashboard.&lt;/P&gt;

&lt;P&gt;Hope this helps to get you started ...&lt;/P&gt;

&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2016 21:37:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Looking-for-a-method-to-display-process-progress-in-a-dashboard/m-p/222877#M13831</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2016-01-11T21:37:46Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for a method to display process progress in a dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Looking-for-a-method-to-display-process-progress-in-a-dashboard/m-p/222878#M13832</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;

&lt;P&gt;After creating dummy events using &lt;A href="https://answers.splunk.com/answers/47493/how-do-you-add-dummy-events-to-a-search-result.html"&gt;https://answers.splunk.com/answers/47493/how-do-you-add-dummy-events-to-a-search-result.html&lt;/A&gt; I  was able to create a table view that refreshes every 30 seconds that updates a column with each step's current state.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jan 2016 19:38:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Looking-for-a-method-to-display-process-progress-in-a-dashboard/m-p/222878#M13832</guid>
      <dc:creator>jwinderDDS</dc:creator>
      <dc:date>2016-01-13T19:38:21Z</dc:date>
    </item>
  </channel>
</rss>

