<?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 Universal fowarder and WMI in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65825#M13212</link>
    <description>&lt;P&gt;I want to configure the universal fowarder to poll WMI data and forward it to my indexer. I understand that I need a wmi.config file for the universal fowarder, however I do not know what to put it in it. &lt;/P&gt;

&lt;P&gt;I want to be able to poll the following that is the same as the windows app.&lt;/P&gt;

&lt;P&gt;WMI: Memory&lt;BR /&gt;
WMI: LocalPhysicalDisk&lt;BR /&gt;
WMI: CPU Time&lt;BR /&gt;
WMI: LocalNetwork&lt;/P&gt;

&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
    <pubDate>Mon, 06 Feb 2012 12:11:06 GMT</pubDate>
    <dc:creator>tympaniplayer</dc:creator>
    <dc:date>2012-02-06T12:11:06Z</dc:date>
    <item>
      <title>Universal fowarder and WMI</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65825#M13212</link>
      <description>&lt;P&gt;I want to configure the universal fowarder to poll WMI data and forward it to my indexer. I understand that I need a wmi.config file for the universal fowarder, however I do not know what to put it in it. &lt;/P&gt;

&lt;P&gt;I want to be able to poll the following that is the same as the windows app.&lt;/P&gt;

&lt;P&gt;WMI: Memory&lt;BR /&gt;
WMI: LocalPhysicalDisk&lt;BR /&gt;
WMI: CPU Time&lt;BR /&gt;
WMI: LocalNetwork&lt;/P&gt;

&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Mon, 06 Feb 2012 12:11:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65825#M13212</guid>
      <dc:creator>tympaniplayer</dc:creator>
      <dc:date>2012-02-06T12:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: Universal fowarder and WMI</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65826#M13213</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;[WMI:LocalPhysicalDisk]
interval = 3600
wql = select Name, CurrentDiskQueueLength, DiskBytesPerSec, PercentDiskReadTime, PercentDiskWriteTime, PercentDiskTime from Win32_PerfFormattedData_PerfDisk_PhysicalDisk
index = default
disabled = 0

[WMI:LocalProcesses]
interval = 3600
wql = select Name, IDProcess, PrivateBytes, PercentProcessorTime from Win32_PerfFormattedData_PerfProc_Process
index = default
disabled = 0

[WMI:Memory]
interval = 3600
wql = select PagesPerSec, AvailableMBytes, CommittedBytes, PercentCommittedBytesInUse from Win32_PerfFormattedData_PerfOS_Memory
index = default
disabled = 0

[WMI:LocalNetwork]
interval = 3600
wql = select Name, BytesReceivedPerSec, BytesSentPerSec, BytesTotalPerSec, CurrentBandwidth from Win32_PerfFormattedData_Tcpip_NetworkInterface
index = default
disabled = 0

[WMI:CPUTime]
interval = 3600
wql = SELECT PercentProcessorTime,PercentUserTime FROM Win32_PerfFormattedData_PerfOS_Processor WHERE Name="_Total"
index = default
disabled = 0
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 06 Feb 2012 12:42:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65826#M13213</guid>
      <dc:creator>imrago</dc:creator>
      <dc:date>2012-02-06T12:42:50Z</dc:date>
    </item>
    <item>
      <title>Re: Universal fowarder and WMI</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65827#M13214</link>
      <description>&lt;P&gt;you are the awesome thanks so much!&lt;/P&gt;</description>
      <pubDate>Mon, 06 Feb 2012 12:45:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65827#M13214</guid>
      <dc:creator>tympaniplayer</dc:creator>
      <dc:date>2012-02-06T12:45:44Z</dc:date>
    </item>
    <item>
      <title>Re: Universal fowarder and WMI</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65828#M13215</link>
      <description>&lt;P&gt;is there anything I need to do to enable this to forward the data?&lt;/P&gt;</description>
      <pubDate>Mon, 06 Feb 2012 12:59:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65828#M13215</guid>
      <dc:creator>tympaniplayer</dc:creator>
      <dc:date>2012-02-06T12:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: Universal fowarder and WMI</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65829#M13216</link>
      <description>&lt;P&gt;try to change the interval from 3600 to something smaller, to get the sample more frequently &lt;/P&gt;

&lt;P&gt;Is the connection in place between UF and the indexer?&lt;/P&gt;

&lt;P&gt;there is a useful app: en-US/app/SplunkDeploymentMonitor/all_forwarders&lt;/P&gt;</description>
      <pubDate>Mon, 06 Feb 2012 13:27:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65829#M13216</guid>
      <dc:creator>imrago</dc:creator>
      <dc:date>2012-02-06T13:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: Universal fowarder and WMI</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65830#M13217</link>
      <description>&lt;P&gt;yeah I put the interval down considerably and yes the connection is in place, it is receiving perfmon data. Thanks for all your help&lt;/P&gt;</description>
      <pubDate>Mon, 06 Feb 2012 13:45:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65830#M13217</guid>
      <dc:creator>tympaniplayer</dc:creator>
      <dc:date>2012-02-06T13:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: Universal fowarder and WMI</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65831#M13218</link>
      <description>&lt;P&gt;I seem to not be receiving the WMI data though.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Feb 2012 13:54:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65831#M13218</guid>
      <dc:creator>tympaniplayer</dc:creator>
      <dc:date>2012-02-06T13:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: Universal fowarder and WMI</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65832#M13219</link>
      <description>&lt;P&gt;you could add the following two lines to inputs.conf, change someindexname to something else and restart the UF&lt;/P&gt;

&lt;P&gt;[default] &lt;BR /&gt;
index = someindexname&lt;/P&gt;</description>
      <pubDate>Mon, 06 Feb 2012 13:54:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65832#M13219</guid>
      <dc:creator>imrago</dc:creator>
      <dc:date>2012-02-06T13:54:42Z</dc:date>
    </item>
    <item>
      <title>Re: Universal fowarder and WMI</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65833#M13220</link>
      <description>&lt;P&gt;All i needed to do was restart. Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 06 Feb 2012 20:40:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65833#M13220</guid>
      <dc:creator>tympaniplayer</dc:creator>
      <dc:date>2012-02-06T20:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: Universal fowarder and WMI</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65834#M13221</link>
      <description>&lt;P&gt;Really stupid question, sorry but where does wmi.conf have to be put?&lt;/P&gt;</description>
      <pubDate>Fri, 10 Feb 2012 01:05:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65834#M13221</guid>
      <dc:creator>chrismor</dc:creator>
      <dc:date>2012-02-10T01:05:07Z</dc:date>
    </item>
    <item>
      <title>Re: Universal fowarder and WMI</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65835#M13222</link>
      <description>&lt;P&gt;ect/system/local&lt;/P&gt;</description>
      <pubDate>Fri, 10 Feb 2012 11:51:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65835#M13222</guid>
      <dc:creator>tympaniplayer</dc:creator>
      <dc:date>2012-02-10T11:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: Universal fowarder and WMI</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65836#M13223</link>
      <description>&lt;P&gt;or in an app if you deploy your configuration in apps.&lt;BR /&gt;
$SPLUNK_HOME/etc/apps/&lt;MYAPP&gt;/local/&lt;/MYAPP&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Apr 2012 02:44:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65836#M13223</guid>
      <dc:creator>yannK</dc:creator>
      <dc:date>2012-04-11T02:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: Universal fowarder and WMI</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65837#M13224</link>
      <description>&lt;P&gt;What do you mean by interval = 3600 , its in second or what? and also how do get 64 windows servers WMI data in splunk(Splunk is running in linux box)&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jun 2012 07:27:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65837#M13224</guid>
      <dc:creator>vaibhavbeohar</dc:creator>
      <dc:date>2012-06-01T07:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: Universal fowarder and WMI</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65838#M13225</link>
      <description>&lt;P&gt;Only a windows splunk or Universal Forwarder can monitor WMI on local or remote windows server. (they use the windows local libraries, and need to be member of the correct AD group)&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;&lt;P&gt;local windows event log, install Universal Forwarder  (use wizard or ....\local\inputs.conf )&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Data/MonitorWindowsdata"&gt;http://docs.splunk.com/Documentation/Splunk/latest/Data/MonitorWindowsdata&lt;/A&gt;&lt;/P&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;remote windows boxes using WMI ( edit ...\local\wmi.conf)&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/4.3.2/Data/ConsiderationsfordecidinghowtomonitorWindowsdata"&gt;http://docs.splunk.com/Documentation/Splunk/4.3.2/Data/ConsiderationsfordecidinghowtomonitorWindowsdata&lt;/A&gt;&lt;/P&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Fri, 01 Jun 2012 14:34:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65838#M13225</guid>
      <dc:creator>yannK</dc:creator>
      <dc:date>2012-06-01T14:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: Universal fowarder and WMI</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65839#M13226</link>
      <description>&lt;P&gt;Thanks for your reply but how do i get  64 windows servers WMI data in splunk, do i need to change query like "wql = select Name, BytesReceivedPerSec, BytesSentPerSec, BytesTotalPerSec, CurrentBandwidth from &lt;STRONG&gt;Win32&lt;/STRONG&gt;_PerfFormattedData_Tcpip_NetworkInterface" &lt;/P&gt;

&lt;P&gt;DO i need to make win64 ???&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 11:53:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65839#M13226</guid>
      <dc:creator>vaibhavbeohar</dc:creator>
      <dc:date>2020-09-28T11:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: Universal fowarder and WMI</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65840#M13227</link>
      <description>&lt;P&gt;Hi, I have configure all the above configuration in wmi.conf and i am getting data in my indexer except WMI:LocalProcesses , I am not able to get Local process in my indexer.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jun 2012 06:05:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65840#M13227</guid>
      <dc:creator>vaibhavbeohar</dc:creator>
      <dc:date>2012-06-12T06:05:04Z</dc:date>
    </item>
    <item>
      <title>Re: Universal fowarder and WMI</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65841#M13228</link>
      <description>&lt;P&gt;No, you can leave it as win32&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2014 12:14:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65841#M13228</guid>
      <dc:creator>watsm10</dc:creator>
      <dc:date>2014-02-19T12:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: Universal fowarder and WMI</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65842#M13229</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;
Can I add sourcetype to each stanza? bec when I am adding "sourcetype = wmi_moniter", I am not able to see any data if I am searching using "sourcetype = wmi_moniter"&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 18:54:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65842#M13229</guid>
      <dc:creator>marellasunil</dc:creator>
      <dc:date>2020-09-28T18:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: Universal fowarder and WMI</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65843#M13230</link>
      <description>&lt;P&gt;hi..&lt;BR /&gt;
can u just help me out of this.. iam unable to understand that answer.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jan 2019 03:40:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Universal-fowarder-and-WMI/m-p/65843#M13230</guid>
      <dc:creator>rajinigv</dc:creator>
      <dc:date>2019-01-25T03:40:23Z</dc:date>
    </item>
  </channel>
</rss>

