<?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 create a memory utilization dashboard for Windows machines? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-search-to-create-a-memory-utilization-dashboard/m-p/446800#M126718</link>
    <description>&lt;P&gt;are you collecting the perfmon metrics for memory utilization?&lt;BR /&gt;
your search overall is on the right track ...&lt;BR /&gt;
you can consolidate the &lt;CODE&gt;eval&lt;/CODE&gt;s&lt;BR /&gt;
&lt;CODE&gt;... | eval GB = round(Value/1024/1024/1024, 2)&lt;/CODE&gt;&lt;BR /&gt;
also, pay attention to the &lt;CODE&gt;counter&lt;/CODE&gt; field in the perfmon data&lt;/P&gt;</description>
    <pubDate>Wed, 12 Sep 2018 00:14:19 GMT</pubDate>
    <dc:creator>adonio</dc:creator>
    <dc:date>2018-09-12T00:14:19Z</dc:date>
    <item>
      <title>How to edit my search to create a memory utilization dashboard for Windows machines?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-search-to-create-a-memory-utilization-dashboard/m-p/446799#M126717</link>
      <description>&lt;P&gt;I am trying to set up a Memory utilization dashboard for Windows machines. I did try to set up the dashboard but I am able to get it only to a stage where I can set up dashboard for memory available. But I need metrics for memory utilized by time. &lt;/P&gt;

&lt;P&gt;Here is what I am trying &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=**** sourcetype="Perfmon:Available Memory"  | bucket _time span=15m | eval gigabytes=(((Value/1024)/1024)/1024) | eval GB=round(gigabytes, 2) | timechart avg(GB) by host limit=0
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Any help is greatly appreciated. &lt;/P&gt;</description>
      <pubDate>Sun, 09 Sep 2018 23:25:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-search-to-create-a-memory-utilization-dashboard/m-p/446799#M126717</guid>
      <dc:creator>vn86893</dc:creator>
      <dc:date>2018-09-09T23:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my search to create a memory utilization dashboard for Windows machines?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-search-to-create-a-memory-utilization-dashboard/m-p/446800#M126718</link>
      <description>&lt;P&gt;are you collecting the perfmon metrics for memory utilization?&lt;BR /&gt;
your search overall is on the right track ...&lt;BR /&gt;
you can consolidate the &lt;CODE&gt;eval&lt;/CODE&gt;s&lt;BR /&gt;
&lt;CODE&gt;... | eval GB = round(Value/1024/1024/1024, 2)&lt;/CODE&gt;&lt;BR /&gt;
also, pay attention to the &lt;CODE&gt;counter&lt;/CODE&gt; field in the perfmon data&lt;/P&gt;</description>
      <pubDate>Wed, 12 Sep 2018 00:14:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-search-to-create-a-memory-utilization-dashboard/m-p/446800#M126718</guid>
      <dc:creator>adonio</dc:creator>
      <dc:date>2018-09-12T00:14:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my search to create a memory utilization dashboard for Windows machines?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-search-to-create-a-memory-utilization-dashboard/m-p/446801#M126719</link>
      <description>&lt;P&gt;1)  There is no point to bin _time before timechart.  Timechart will bin for you automatically.&lt;/P&gt;

&lt;P&gt;2) On my system, the sourcetype is "Perfmon:Memory" and the counter (for example) is "Available MBytes".  review your data to be sure of the sourcetype and counter name.&lt;/P&gt;

&lt;P&gt;3) When you divide before averaging, your rounding errors will accumulate.  Better to average, then divide.  In this case, I've used the MBytes, so there is only one level of division. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; index=perfmon sourcetype="Perfmon:Available Memory"  counter= "Available MBytes"
| timechart span=15m avg(Value) by host limit=0
| foreach * [ eval &amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;=round( (&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;/1024/1024/1024),2)]
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 12 Sep 2018 03:25:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-search-to-create-a-memory-utilization-dashboard/m-p/446801#M126719</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2018-09-12T03:25:11Z</dc:date>
    </item>
  </channel>
</rss>

