<?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: How to edit my search to get the output to show on a radial gauge? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-search-to-get-the-output-to-show-on-a-radial/m-p/277021#M83548</link>
    <description>&lt;P&gt;Im sorry I meant the radial gauge for a dashboard option does that help?&lt;/P&gt;</description>
    <pubDate>Tue, 20 Oct 2015 15:32:29 GMT</pubDate>
    <dc:creator>TJ0214</dc:creator>
    <dc:date>2015-10-20T15:32:29Z</dc:date>
    <item>
      <title>How to edit my search to get the output to show on a radial gauge?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-search-to-get-the-output-to-show-on-a-radial/m-p/277019#M83546</link>
      <description>&lt;P&gt;I am trying to show the total amount of space we are using in a box right now for a dashboard.  Here is my following serach, but I can't get the output to show on the needle.  I was hoping it would work.  Any ideas?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=es_sec_box_ko sourcetype="box:users" | eval spaceUsed_GB=(space_used/1024/1024/1024) | where spaceUsed_GB &amp;gt;0 |stats latest(spaceUsed_GB) as spaceUsed_GB count by login |addcoltotals | sort -spaceUsed_GB
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2015 13:39:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-search-to-get-the-output-to-show-on-a-radial/m-p/277019#M83546</guid>
      <dc:creator>TJ0214</dc:creator>
      <dc:date>2015-10-20T13:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my search to get the output to show on a radial gauge?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-search-to-get-the-output-to-show-on-a-radial/m-p/277020#M83547</link>
      <description>&lt;P&gt;What do you mean by "show on the needle"?  If you mean some kind of single-value visualization, then you need to get rid of the &lt;CODE&gt;by login&lt;/CODE&gt; part of your search because this causes &lt;CODE&gt;stats&lt;/CODE&gt; to not produce a single value.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2015 13:58:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-search-to-get-the-output-to-show-on-a-radial/m-p/277020#M83547</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-10-20T13:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my search to get the output to show on a radial gauge?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-search-to-get-the-output-to-show-on-a-radial/m-p/277021#M83548</link>
      <description>&lt;P&gt;Im sorry I meant the radial gauge for a dashboard option does that help?&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2015 15:32:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-search-to-get-the-output-to-show-on-a-radial/m-p/277021#M83548</guid>
      <dc:creator>TJ0214</dc:creator>
      <dc:date>2015-10-20T15:32:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my search to get the output to show on a radial gauge?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-search-to-get-the-output-to-show-on-a-radial/m-p/277022#M83549</link>
      <description>&lt;P&gt;I took out by login and got no data.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2015 15:34:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-search-to-get-the-output-to-show-on-a-radial/m-p/277022#M83549</guid>
      <dc:creator>TJ0214</dc:creator>
      <dc:date>2015-10-20T15:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my search to get the output to show on a radial gauge?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-search-to-get-the-output-to-show-on-a-radial/m-p/277023#M83550</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=es_sec_box_ko sourcetype="box:users" | dedup login | eval spaceUsed_GB=(space_used/1024/1024/1024) | stats sum(spaceUsed_GB) as total_spaceUsed_GB
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This will produce a single value that should display in your single-value visualization.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2015 15:47:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-search-to-get-the-output-to-show-on-a-radial/m-p/277023#M83550</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-10-20T15:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my search to get the output to show on a radial gauge?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-search-to-get-the-output-to-show-on-a-radial/m-p/277024#M83551</link>
      <description>&lt;P&gt;Try something like this (little optimization done as well)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=es_sec_box_ko sourcetype="box:users" space_used&amp;gt;0 |stats latest(space_used) as space_used by login  | eval spaceUsed_GB=(space_used/1024/1024/1024)| stats sum(spaceUsed_GB) as spaceUsed_GB
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Oct 2015 16:16:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-search-to-get-the-output-to-show-on-a-radial/m-p/277024#M83551</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2015-10-20T16:16:18Z</dc:date>
    </item>
  </channel>
</rss>

