Click here to Skip to main content
15,885,767 members
Articles / DevOps / Testing

WCF Service Performance Monitoring using “Perfmon”

Rate me:
Please Sign up or sign in to vote.
4.95/5 (12 votes)
31 Jul 2012CPOL2 min read 77.3K   2.4K   31  
This article explain how to use Windows "Perfmon" to monitor WCF service performance.

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PerfCounter", "PerfCounter\PerfCounter.csproj", "{79B5C668-621C-4CCC-94BD-1CDBF3B1793E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PerformanceCounterService", "PerformanceCounterService\PerformanceCounterService.csproj", "{97387F0F-67CB-4DC4-BFF8-0E1E77683506}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PerformanceCounterClient", "PerformanceCounterClient\PerformanceCounterClient.csproj", "{CDFCC116-2B08-4054-8594-993D92BD065B}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Debug|Mixed Platforms = Debug|Mixed Platforms
		Debug|x86 = Debug|x86
		Release|Any CPU = Release|Any CPU
		Release|Mixed Platforms = Release|Mixed Platforms
		Release|x86 = Release|x86
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{79B5C668-621C-4CCC-94BD-1CDBF3B1793E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{79B5C668-621C-4CCC-94BD-1CDBF3B1793E}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{79B5C668-621C-4CCC-94BD-1CDBF3B1793E}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{79B5C668-621C-4CCC-94BD-1CDBF3B1793E}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{79B5C668-621C-4CCC-94BD-1CDBF3B1793E}.Debug|x86.ActiveCfg = Debug|Any CPU
		{79B5C668-621C-4CCC-94BD-1CDBF3B1793E}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{79B5C668-621C-4CCC-94BD-1CDBF3B1793E}.Release|Any CPU.Build.0 = Release|Any CPU
		{79B5C668-621C-4CCC-94BD-1CDBF3B1793E}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{79B5C668-621C-4CCC-94BD-1CDBF3B1793E}.Release|Mixed Platforms.Build.0 = Release|Any CPU
		{79B5C668-621C-4CCC-94BD-1CDBF3B1793E}.Release|x86.ActiveCfg = Release|Any CPU
		{97387F0F-67CB-4DC4-BFF8-0E1E77683506}.Debug|Any CPU.ActiveCfg = Debug|x86
		{97387F0F-67CB-4DC4-BFF8-0E1E77683506}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
		{97387F0F-67CB-4DC4-BFF8-0E1E77683506}.Debug|Mixed Platforms.Build.0 = Debug|x86
		{97387F0F-67CB-4DC4-BFF8-0E1E77683506}.Debug|x86.ActiveCfg = Debug|x86
		{97387F0F-67CB-4DC4-BFF8-0E1E77683506}.Debug|x86.Build.0 = Debug|x86
		{97387F0F-67CB-4DC4-BFF8-0E1E77683506}.Release|Any CPU.ActiveCfg = Release|x86
		{97387F0F-67CB-4DC4-BFF8-0E1E77683506}.Release|Mixed Platforms.ActiveCfg = Release|x86
		{97387F0F-67CB-4DC4-BFF8-0E1E77683506}.Release|Mixed Platforms.Build.0 = Release|x86
		{97387F0F-67CB-4DC4-BFF8-0E1E77683506}.Release|x86.ActiveCfg = Release|x86
		{97387F0F-67CB-4DC4-BFF8-0E1E77683506}.Release|x86.Build.0 = Release|x86
		{CDFCC116-2B08-4054-8594-993D92BD065B}.Debug|Any CPU.ActiveCfg = Debug|x86
		{CDFCC116-2B08-4054-8594-993D92BD065B}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
		{CDFCC116-2B08-4054-8594-993D92BD065B}.Debug|Mixed Platforms.Build.0 = Debug|x86
		{CDFCC116-2B08-4054-8594-993D92BD065B}.Debug|x86.ActiveCfg = Debug|x86
		{CDFCC116-2B08-4054-8594-993D92BD065B}.Debug|x86.Build.0 = Debug|x86
		{CDFCC116-2B08-4054-8594-993D92BD065B}.Release|Any CPU.ActiveCfg = Release|x86
		{CDFCC116-2B08-4054-8594-993D92BD065B}.Release|Mixed Platforms.ActiveCfg = Release|x86
		{CDFCC116-2B08-4054-8594-993D92BD065B}.Release|Mixed Platforms.Build.0 = Release|x86
		{CDFCC116-2B08-4054-8594-993D92BD065B}.Release|x86.ActiveCfg = Release|x86
		{CDFCC116-2B08-4054-8594-993D92BD065B}.Release|x86.Build.0 = Release|x86
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead IGATE
India India
Programming Passion: C#, WPF, WCF

@:milanraval@gmail.com

Comments and Discussions