Click here to Skip to main content
15,895,557 members
Articles / Desktop Programming / XAML

Diagnostic Explorer

Rate me:
Please Sign up or sign in to vote.
4.93/5 (41 votes)
29 Nov 2010LGPL315 min read 82.7K   1.5K   120  
A .NET library and website which allows developers to expose and view arbitrary diagnostic information about their .NET processes.
#region Copyright

// Diagnostic Explorer, a .Net diagnostic toolset
// Copyright (C) 2010 Cameron Elliot
// 
// This file is part of Diagnostic Explorer.
// 
// Diagnostic Explorer is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// 
// Diagnostic Explorer is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Lesser General Public License for more details.
// 
// You should have received a copy of the GNU Lesser General Public License
// along with Diagnostic Explorer.  If not, see <http://www.gnu.org/licenses/>.
// 
// http://diagexplorer.sourceforge.net/

#endregion

using System;
using System.Diagnostics;

namespace DiagnosticExplorer
{

	[Serializable]
	internal class SystemStatus
	{
		public SystemStatus()
		{
			DiagnosticManager.Register(this, "Environment", "System");

			counterCpuProcess = new PerformanceCounter("Process", "% Processor Time", Process.GetCurrentProcess().ProcessName);
			counterCpuTotal = CreateCounter("Processor", "% Processor Time", "_Total", true);
			counterMemoryAvailable = CreateCounter("Memory", "Available MBytes", "", true);
			User = string.Format("{0}\\{1}", Environment.UserDomainName, Environment.UserName);
			HostMachine = Environment.MachineName;
			ProcessorCount = Environment.ProcessorCount;
			DiagnosticRequests = new RateCounter(5);
			PID = Process.GetCurrentProcess().Id;
		}

		private static PerformanceCounter CreateCounter(string category, string counterName, string instance, bool readOnly)
		{
			try
			{
				return new PerformanceCounter(category, counterName, instance, readOnly);
			}
			catch
			{
				return null;
			}
		}

		[Property(Category = "CPU")]
		public int ProcessorCount { get; private set; }

		[Property(Category = "CPU", FormatString = "{0:N2}")]
		public double MemoryAvailable
		{
			get { return GetNextValue(counterMemoryAvailable); }
		}

		[Property(Category = "CPU")]
		public int Threads
		{
			get { return Process.GetCurrentProcess().Threads.Count; }
		}

		[Property(Category = "CPU", FormatString = "{0:N2}")]
		public double CPUTotal
		{
			get { return GetNextValue(counterCpuTotal); }
		}

		[Property(Category = "CPU", FormatString = "{0:N2}")]
		public double CPU
		{
			get { return GetNextValue(counterCpuProcess) / Environment.ProcessorCount; }
		}

		[Property(Category = "CPU", FormatString = "{0:N2}")]
		public double VirtualMemory
		{
			get { return Process.GetCurrentProcess().PagedMemorySize64 / (1024F * 1024F); }
		}

		[Property(Category = "CPU", FormatString = "{0:N2}")]
		public double Memory
		{
			get { return Process.GetCurrentProcess().WorkingSet64 / (1024F * 1024F); }
		}

		public int PID { get; set; }

		public string HostMachine { get; set; }

		public RateCounter DiagnosticRequests { get; private set; }
	
		public string User { get; set; }

		public TimeSpan UpTime
		{
			get { return DateTime.Now - Process.GetCurrentProcess().StartTime; }
		}

		[Property(FormatString = "{0:d MMM yyyy HH:mm:ss}")]
		public DateTime SystemTime
		{
			get { return DateTime.Now; }
		}



		private static PerformanceCounter counterCpuProcess;
		private static PerformanceCounter counterCpuTotal;
		private static PerformanceCounter counterMemoryAvailable;

		private static double GetNextValue(PerformanceCounter counter)
		{
			try
			{
				return counter == null ? 0 : counter.NextValue();
			}
			catch
			{
				return -1;
			}
		}
	}
}

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 GNU Lesser General Public License (LGPLv3)


Written By
Software Developer
United Kingdom United Kingdom
I am a software developer originally from Auckland, New Zealand. I have lived and worked in London since 2005.

Comments and Discussions