<?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 How can I show the total count as well as completed count? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-show-the-total-count-as-well-as-completed-count/m-p/304682#M91580</link>
    <description>&lt;P&gt;If I have to show that 8 out of 10 tickets have been closed how can I best show this? I need to show the total count as well as completed count&lt;/P&gt;</description>
    <pubDate>Thu, 22 Feb 2018 14:18:01 GMT</pubDate>
    <dc:creator>akshaypillai</dc:creator>
    <dc:date>2018-02-22T14:18:01Z</dc:date>
    <item>
      <title>How can I show the total count as well as completed count?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-show-the-total-count-as-well-as-completed-count/m-p/304682#M91580</link>
      <description>&lt;P&gt;If I have to show that 8 out of 10 tickets have been closed how can I best show this? I need to show the total count as well as completed count&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2018 14:18:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-show-the-total-count-as-well-as-completed-count/m-p/304682#M91580</guid>
      <dc:creator>akshaypillai</dc:creator>
      <dc:date>2018-02-22T14:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: How can I show the total count as well as completed count?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-show-the-total-count-as-well-as-completed-count/m-p/304683#M91581</link>
      <description>&lt;P&gt;One way to visually represent this would be to create a statistics table like this (with the percentage column optional, but nice to have):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Tickets Closed | Total Tickets | Percentage Closed
8              | 10            | 80%
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Alternately, you could make a dashboard with two &lt;CODE&gt;single&lt;/CODE&gt; items (or three, if you wanted the percentage), one for each value. And another way that would make sense to present that data would be a pie chart.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2018 17:53:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-show-the-total-count-as-well-as-completed-count/m-p/304683#M91581</guid>
      <dc:creator>elliotproebstel</dc:creator>
      <dc:date>2018-02-22T17:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: How can I show the total count as well as completed count?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-show-the-total-count-as-well-as-completed-count/m-p/304684#M91582</link>
      <description>&lt;P&gt;This should get you started.  You'll likely need to change the &lt;CODE&gt;eval&lt;/CODE&gt; expression to whatever indicates a closed ticket.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;your base search for all tickets&amp;gt; | stats count(eval(status=Closed)) as closed, count as total | eval "Percentage Closed"=(closed*100)/total | rename closed as "Tickets Closed", total as "Total Tickets" | table "Tickets Closed" "Total Tickets" "Percentage Closed"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 22 Feb 2018 18:14:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-show-the-total-count-as-well-as-completed-count/m-p/304684#M91582</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2018-02-22T18:14:25Z</dc:date>
    </item>
  </channel>
</rss>

