Enterprise Library Instrumentation Block implementation Urgent

  • Thread starter Thread starter gfe
  • Start date Start date
G

gfe

I have to implement instrumentation block of enterprise library to
monitor the application.If someone can help me out that will be
great.i have no idea how to do this...

thanks.
 
Hi Aman,

The logging block of the Enterprise lib is done just like all
other blocks. Instrumentation features can be added to it as described
below:

You have to install the Enterprise lib (it is free on the web).

1) Then you have to configure your Configuration file using the
wysiwyg -> Program Files->Enterprise Lib Configuration
2) Make a reference to the following dlls.

Microsoft.Practices.EnterpriseLibrary.Logging.dll

· Microsoft.Practices.EnterpriseLibrary.Common.dll

· Microsoft.Practices.EnterpriseLibrary.ObjectBuilder.dll


3) Then you add the namespace references to your application code
classes for the application blocks you want to use:


using Microsoft.Practices.EnterpriseLibrary.Logging;

using Microsoft.Practices.EnterpriseLibrary.Logging.ExtraInformation;

using Microsoft.Practices.EnterpriseLibrary.Logging.Filters;

4) To use the Instrumentation features of the Enterprise Library, also
add the following namespace to your classes

using System.Diagnostics;


For more information and a sample application, follow this link:
http://www.daveandal.net/articles/EntLibASPNET/EnterpriseLibraryInASPNET-2.htm

Regards,

Chike.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top