<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Techibee.com &#187; perfmon</title>
	<atom:link href="http://techibee.com/category/perfmon/feed" rel="self" type="application/rss+xml" />
	<link>http://techibee.com</link>
	<description>A System Administrator&#039;s Blog</description>
	<lastBuildDate>Mon, 06 Feb 2012 09:40:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Accessing performance counters using PowerShell</title>
		<link>http://techibee.com/perfmon/accessing-performance-counters-using-powershell/324</link>
		<comments>http://techibee.com/perfmon/accessing-performance-counters-using-powershell/324#comments</comments>
		<pubDate>Fri, 26 Feb 2010 17:49:01 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[perfmon]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[performance counter values using powershell]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=324</guid>
		<description><![CDATA[Using Get-Counter cmdlet in PowerShell V2, you can get performance counter values. For instance, if you want the current free memory statistics, use this command. Get-Counter &#8216;MemoryAvailable MBytes&#8217; If you want to query the counter continously, use below command. Get-Counter &#8216;MemoryAvailable MBytes&#8217; -Continous -SampleInterval 5 Here sampleinterval means how frequently you want to query the performance [...]]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-3250"></div></div><p>Using Get-Counter cmdlet in PowerShell V2, you can get performance counter values. For instance, if you want the current free memory statistics, use this command.</p>
<blockquote><p>Get-Counter &#8216;MemoryAvailable MBytes&#8217;</p></blockquote>
<p>If you want to query the counter continously, use below command.</p>
<blockquote><p>Get-Counter &#8216;MemoryAvailable MBytes&#8217; -Continous -SampleInterval 5</p></blockquote>
<p>Here sampleinterval means how frequently you want to query the performance counter. You can need to parse a value in seconds for this.</p>
<p>Looks like cool right? You can do this from command prompt without powershell also, see <a href="http://techibee.com/tools/collect-performance-data-from-command-prompt/46" target="_blank">my previous post</a>.</p>
<p>Happy Learning..,<br />
Sitaram Pamarthi</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/perfmon/accessing-performance-counters-using-powershell/324/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unable to start Counter logs in Perfmon</title>
		<link>http://techibee.com/general/unable-to-start-counter-logs-in-perfmon/168</link>
		<comments>http://techibee.com/general/unable-to-start-counter-logs-in-perfmon/168#comments</comments>
		<pubDate>Mon, 21 Dec 2009 15:17:00 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[perfmon]]></category>

		<guid isPermaLink="false">http://techibee.com/sysadmins/unable-to-start-counter-logs-in-perfmon/168</guid>
		<description><![CDATA[Sometimes you might see error like below while starting &#8220;Counter logs&#8221; tasks from perfmon and additionally you will see Event ID 2003 with source &#8220;Sysmonlog&#8221; in Application Event viewer and Event ID 7024 with source &#8220;Service Control Manager&#8221; in System event viewer. &#160; The test1 log or alert has not started. Refresh the log or [...]]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-1690"></div></div><p><span style="font-family: Verdana, sans-serif;">Sometimes you might see error like below while starting &#8220;Counter logs&#8221; tasks from perfmon and additionally you will see Event ID 2003 with source &#8220;Sysmonlog&#8221; in Application Event viewer and Event ID 7024 with source &#8220;Service Control Manager&#8221; in System event viewer.</span></p>
<div>&nbsp;</div>
<p><span style="font-family: 'Verdana','sans-serif';"><span style="font-family: Verdana, sans-serif;"></span></span><br />
<blockquote><span style="font-family: 'Verdana','sans-serif';"><span style="font-family: Verdana, sans-serif;"><strong>The test1 log or alert has not started. Refresh the log or alert list to view current status, or see the application event log for any errors.&nbsp; Some logs and alerts might require a few minutes to start,&nbsp; especially if they include many counters or they contain counters to be collected from a remote system that is no longer on the network. For further information see the troubleshooting section in the online help. </strong></span></span></p></blockquote>
<p><span style="font-family: Verdana, sans-serif;">If the above mentioned symptoms matches your problem, then it can be fixed by following the below steps.</span></p>
<div>&nbsp;</div>
<ul>
<li><span style="font-family: Verdana, sans-serif;">Open regedit and navigate to &#8220;<span style="font-family: 'Verdana','sans-serif';">HKLMMACHINESYSTEMCurrentControlSetServicesSysmonLogLog Queries&#8221; registry key and go to&nbsp;permissions&nbsp;</span></span></li>
<li><span style="font-family: 'Verdana','sans-serif';"><span style="font-family: Verdana, sans-serif;">Grant full permissions to &#8220;Network Service&#8221; and propagate them to child objects.</span></span></li>
<li><span style="font-family: 'Verdana','sans-serif';"><span style="font-family: Verdana, sans-serif;">Now try to start your counter log job; it should start now without any issues.</span></span></li>
</ul>
<p>
<div>&nbsp;</div>
<p><span style="font-family: 'Verdana','sans-serif';"><span style="font-family: Verdana, sans-serif;">Hope this helps you&#8230;</span></span></p>
<div>&nbsp;</div>
<p><span style="font-family: 'Verdana','sans-serif';"><span style="font-family: Verdana, sans-serif;">Happy Learning&#8230;,</span></span><br /><span style="font-family: 'Verdana','sans-serif';"><span style="font-family: Verdana, sans-serif;">Sitaram Pamarthi</span></span></p>
<div>&nbsp;</div>
<p><span style="font-family: 'Verdana','sans-serif';"><span style="font-family: Verdana, sans-serif;">Tags: problems with perfmon, unable to start counter logs, Error starting counter logs</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/general/unable-to-start-counter-logs-in-perfmon/168/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

