<?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: windows perfmon network utilization in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/windows-perfmon-network-utilization/m-p/539826#M152693</link>
    <description>&lt;P&gt;Happy to help! Sorry for the typo..&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 14 Feb 2021 06:58:26 GMT</pubDate>
    <dc:creator>lydiapal_splunk</dc:creator>
    <dc:date>2021-02-14T06:58:26Z</dc:date>
    <item>
      <title>windows perfmon network utilization</title>
      <link>https://community.splunk.com/t5/Splunk-Search/windows-perfmon-network-utilization/m-p/539822#M152689</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ggfsplunk_0-1613271152571.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/12932iAA913A3C0EC18E4F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ggfsplunk_0-1613271152571.png" alt="ggfsplunk_0-1613271152571.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I'm trying to figure out to calculate the network utilization on this server using the eval and stats and I'm having problem figuring out the correct search and expression, can you help me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;index=* sourcetype="Perfmon:Network Interface" source="Perfmon:Network Interface" counter=*&lt;BR /&gt;| eval bytes_out = "Bytes Sent/sec", bytes_in = "Bytes Received/sec"&lt;BR /&gt;| eval Bandwidth = bytes_out + bytes_in&lt;BR /&gt;| timechart count by Bandwidth limit=10&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to convert the bytes in mbps, as well, I would really appreciate some help here, Thank you in advance.&lt;/P&gt;</description>
      <pubDate>Sun, 14 Feb 2021 02:59:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/windows-perfmon-network-utilization/m-p/539822#M152689</guid>
      <dc:creator>ggfsplunk</dc:creator>
      <dc:date>2021-02-14T02:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: windows perfmon network utilization</title>
      <link>https://community.splunk.com/t5/Splunk-Search/windows-perfmon-network-utilization/m-p/539823#M152690</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;Something like this should help you:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=* sourcetype="Perfmon:Network Interface" source="Perfmon:Network Interface" counter=*
| eval bytes_out=if(counter="Bytes Sent/sec",Value,0), bytes_in=if(counter="Bytes Received/sec",Value,0)
| eval bandwidth_mbps=(bytes_out+bytes_in)/1024/1024
| timechart avg(bandwidth)&lt;/LI-CODE&gt;&lt;P&gt;Please replace index=* with your index name, as it is bad practise to use index=*.&lt;/P&gt;&lt;P&gt;I'd strongly suggest doing the &lt;A href="https://www.splunk.com/en_us/training/free-courses/splunk-fundamentals-1.html" target="_self"&gt;free Splunk Fundamentals 1 course&lt;/A&gt;, it will help you understand basic SPL better.&lt;/P&gt;</description>
      <pubDate>Sun, 14 Feb 2021 05:26:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/windows-perfmon-network-utilization/m-p/539823#M152690</guid>
      <dc:creator>lydiapal_splunk</dc:creator>
      <dc:date>2021-02-14T05:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: windows perfmon network utilization</title>
      <link>https://community.splunk.com/t5/Splunk-Search/windows-perfmon-network-utilization/m-p/539825#M152692</link>
      <description>&lt;P&gt;Thank you so much, search works, just slight modification on last pipe | timechart avg(bandwidth_mpbs)...&lt;/P&gt;</description>
      <pubDate>Sun, 14 Feb 2021 05:50:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/windows-perfmon-network-utilization/m-p/539825#M152692</guid>
      <dc:creator>ggfsplunk</dc:creator>
      <dc:date>2021-02-14T05:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: windows perfmon network utilization</title>
      <link>https://community.splunk.com/t5/Splunk-Search/windows-perfmon-network-utilization/m-p/539826#M152693</link>
      <description>&lt;P&gt;Happy to help! Sorry for the typo..&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 14 Feb 2021 06:58:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/windows-perfmon-network-utilization/m-p/539826#M152693</guid>
      <dc:creator>lydiapal_splunk</dc:creator>
      <dc:date>2021-02-14T06:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: windows perfmon network utilization</title>
      <link>https://community.splunk.com/t5/Splunk-Search/windows-perfmon-network-utilization/m-p/546334#M154870</link>
      <description>&lt;P&gt;Hey&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Run&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;PerfMon&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;from any command line (or type "&lt;/SPAN&gt;&lt;STRONG&gt;Performance Monitor&lt;/STRONG&gt;&lt;SPAN&gt;" in the Start menu), right-click on "Performance", select "Connect to another computer", and enter the IP address of the Nano Server computer you want to monitor.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Apr 2021 15:05:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/windows-perfmon-network-utilization/m-p/546334#M154870</guid>
      <dc:creator>snehalharshe16</dc:creator>
      <dc:date>2021-04-01T15:05:20Z</dc:date>
    </item>
  </channel>
</rss>

