<?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 convert bytes to gb in dashboard? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-convert-bytes-to-gb-in-dashboard/m-p/448405#M41162</link>
    <description>&lt;P&gt;Ah, how annoying just a tiny addition. Thank you so much!&lt;/P&gt;</description>
    <pubDate>Thu, 19 Jul 2018 13:51:46 GMT</pubDate>
    <dc:creator>nedwards94</dc:creator>
    <dc:date>2018-07-19T13:51:46Z</dc:date>
    <item>
      <title>How to convert bytes to gb in dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-convert-bytes-to-gb-in-dashboard/m-p/448403#M41160</link>
      <description>&lt;P&gt;Created two panels  with single value vizualisation on a dashboard displaying all traffic bytes inbound and outbound. Trying to convert the value to GB therefore need to divide it. Managed to get a search string that works on just a search, but doesn't display within the dashboard. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="siem" sourcetype=proxy 
| stats sum(bytes_out) | eval GB_bytes=(bytes_out/1000000000) | stats count by GB_bytes
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 19 Jul 2018 12:32:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-convert-bytes-to-gb-in-dashboard/m-p/448403#M41160</guid>
      <dc:creator>nedwards94</dc:creator>
      <dc:date>2018-07-19T12:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert bytes to gb in dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-convert-bytes-to-gb-in-dashboard/m-p/448404#M41161</link>
      <description>&lt;P&gt;@nedwards94,&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;sum(bytes_out)&lt;/CODE&gt; gives the field as &lt;CODE&gt;sum(bytes_out)&lt;/CODE&gt; itself. You need to alias it to bytes_out.&lt;/P&gt;

&lt;P&gt;Try this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="siem" sourcetype=proxy 
| stats sum(bytes_out)  as bytes_out| eval GB_bytes=(bytes_out/1000000000) | stats count by GB_bytes
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 19 Jul 2018 13:13:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-convert-bytes-to-gb-in-dashboard/m-p/448404#M41161</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2018-07-19T13:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert bytes to gb in dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-convert-bytes-to-gb-in-dashboard/m-p/448405#M41162</link>
      <description>&lt;P&gt;Ah, how annoying just a tiny addition. Thank you so much!&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jul 2018 13:51:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-convert-bytes-to-gb-in-dashboard/m-p/448405#M41162</guid>
      <dc:creator>nedwards94</dc:creator>
      <dc:date>2018-07-19T13:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert bytes to gb in dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-convert-bytes-to-gb-in-dashboard/m-p/448406#M41163</link>
      <description>&lt;P&gt;KB = bytes/1024&lt;BR /&gt;
MB = bytes/(1024*1024) = bytes/1,048,576&lt;BR /&gt;
GB = bytes/(1024*1024*1024) = bytes/1,073,741,824&lt;/P&gt;

&lt;P&gt;There is a ~7% difference in volume using the binary values versus the straight decimal value (decimal rate will appear "higher")&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 00:05:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-convert-bytes-to-gb-in-dashboard/m-p/448406#M41163</guid>
      <dc:creator>hunderliggur</dc:creator>
      <dc:date>2020-09-30T00:05:16Z</dc:date>
    </item>
  </channel>
</rss>

