<?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: Find total MB in use based on '% Committed in Bytes' and 'Committed Bytes' in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Find-total-MB-in-use-based-on-Committed-in-Bytes-and-Committed/m-p/335162#M40282</link>
    <description>&lt;P&gt;Hi bcyates,&lt;/P&gt;

&lt;P&gt;Are you looking for something like.&lt;BR /&gt;
CommittedBytes(MB) = CommittedBytes/1000000&lt;/P&gt;

&lt;P&gt;= 1610014720/1000000&lt;BR /&gt;
= 1610.01472 MB&lt;/P&gt;</description>
    <pubDate>Thu, 08 Mar 2018 07:00:49 GMT</pubDate>
    <dc:creator>anjambha</dc:creator>
    <dc:date>2018-03-08T07:00:49Z</dc:date>
    <item>
      <title>Find total MB in use based on '% Committed in Bytes' and 'Committed Bytes'</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Find-total-MB-in-use-based-on-Committed-in-Bytes-and-Committed/m-p/335161#M40281</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;My fields looks like this:&lt;/P&gt;

&lt;P&gt;CommittedBytes=1610014720&lt;BR /&gt;
PagesPersec=0&lt;BR /&gt;
PercentCommittedBytesInUse=27&lt;BR /&gt;
wmi_type=Memory&lt;/P&gt;

&lt;P&gt;I can see my total CommittedBytes and my PercentCommittedBytesInUse. But what I need is MB in use instead of just the percentage. Does anyone know a good way to do the math on the conversion?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 00:22:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Find-total-MB-in-use-based-on-Committed-in-Bytes-and-Committed/m-p/335161#M40281</guid>
      <dc:creator>bcyates</dc:creator>
      <dc:date>2018-03-08T00:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: Find total MB in use based on '% Committed in Bytes' and 'Committed Bytes'</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Find-total-MB-in-use-based-on-Committed-in-Bytes-and-Committed/m-p/335162#M40282</link>
      <description>&lt;P&gt;Hi bcyates,&lt;/P&gt;

&lt;P&gt;Are you looking for something like.&lt;BR /&gt;
CommittedBytes(MB) = CommittedBytes/1000000&lt;/P&gt;

&lt;P&gt;= 1610014720/1000000&lt;BR /&gt;
= 1610.01472 MB&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 07:00:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Find-total-MB-in-use-based-on-Committed-in-Bytes-and-Committed/m-p/335162#M40282</guid>
      <dc:creator>anjambha</dc:creator>
      <dc:date>2018-03-08T07:00:49Z</dc:date>
    </item>
    <item>
      <title>Re: Find total MB in use based on '% Committed in Bytes' and 'Committed Bytes'</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Find-total-MB-in-use-based-on-Committed-in-Bytes-and-Committed/m-p/335163#M40283</link>
      <description>&lt;P&gt;you should do something like this &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| eval CommittedBytes_MB=round(CommittedBytes/1000000,2)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;In more accurate way you should try&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| eval CommittedBytes(MB) = round(CommittedBytes/1024/1024,2)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;let me know if this helps!&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 07:42:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Find-total-MB-in-use-based-on-Committed-in-Bytes-and-Committed/m-p/335163#M40283</guid>
      <dc:creator>mayurr98</dc:creator>
      <dc:date>2018-03-08T07:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: Find total MB in use based on '% Committed in Bytes' and 'Committed Bytes'</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Find-total-MB-in-use-based-on-Committed-in-Bytes-and-Committed/m-p/335164#M40284</link>
      <description>&lt;P&gt;Okay so this is still achievable using simple math.&lt;/P&gt;

&lt;P&gt;Step1:Calculate UsedBytes&lt;BR /&gt;
 (UsedBytes/CommittedBytes)*100=PercentCommittedBytesInUse&lt;/P&gt;

&lt;P&gt;Step2 : convert bytes to MB&lt;/P&gt;

&lt;P&gt;UsedBytes/1024/1024&lt;/P&gt;

&lt;P&gt;Try this search query &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| eval UsedBytes=(PercentCommittedBytesInUse/100)*CommittedBytes | eval UsedMB=UsedBytes/1024/1024
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Let me know if this helps!&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 14:09:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Find-total-MB-in-use-based-on-Committed-in-Bytes-and-Committed/m-p/335164#M40284</guid>
      <dc:creator>mayurr98</dc:creator>
      <dc:date>2018-03-08T14:09:23Z</dc:date>
    </item>
    <item>
      <title>Re: Find total MB in use based on '% Committed in Bytes' and 'Committed Bytes'</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Find-total-MB-in-use-based-on-Committed-in-Bytes-and-Committed/m-p/335165#M40285</link>
      <description>&lt;P&gt;This is great, thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 19:22:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Find-total-MB-in-use-based-on-Committed-in-Bytes-and-Committed/m-p/335165#M40285</guid>
      <dc:creator>bcyates</dc:creator>
      <dc:date>2018-03-08T19:22:13Z</dc:date>
    </item>
  </channel>
</rss>

