Click here to Skip to main content
Licence CPOL
First Posted 28 Jul 2004
Views 45,433
Bookmarked 16 times

A TraceListener that sends messages via UDP

By | 28 Jul 2004 | Article
An implementation of a TraceListener that sends messages across the network.

Introduction

Generating application log messages is important for diagnosing and testing a system, and a must for complex and large systems. .NET framework currently provides EventLogTraceListener and TextWriterTraceListener, which work fine for desktop applications; but for more complex server applications which need to be monitored/tested remotely, there is no solution.

Hence, I wrote this small utility NetTraceListener class that extends from TraceListener and outputs log messages to a defined UDP port.

Requirement

You would require a basic UDP notes collector to see the UDP messages.

Code

The entire source file is written in less than 20 lines of code.

The constructor takes a host name (e.g., "127.0.0.1") and a port number, it creates a UDPClient object that is used to send UDP messages.

UdpClient notifier; 
IPEndPoint groupEP; 
public TraceNetListener( string host, int port ) 
{
 groupEP = new IPEndPoint( IPAddress.Parse( host ) ,port );
 notifier = new UdpClient(); 
}

The overridden method Close():

public override void Close() 
{ 
    notifier.Close(); 
    base.Close ();
}

The overridden method Write(), it converts the supplied message into bytes, and sends them over a UDP channel.

public override void Write(string message) 
{
 try 
 {
  byte[] bytes = Encoding.ASCII.GetBytes(message);
  notifier.Send(bytes, bytes.Length, groupEP);
 } 
 catch (Exception e) 
 {} 
}

Now in your main application, you need to add this class as a trace listener.

Trace.Listeners.Add( new TraceNetListener("127.0.0.1", 11000 )); 
Trace.Write("HELLO WORLD !");

And you are all set. When you execute this code, your UDP NoteCollector will get all your trace messages.

License

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

About the Author

Mayank Gupta

Web Developer

Australia Australia

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
General"UPD receiver" or "UDP notes collector" PinmemberStarCraft9:59 28 Apr '07  
GeneralSome thoughts PinmemberD. Emilio Grimaldo Tuñon23:06 4 Mar '05  
GeneralGreat Idea PinmemberJubjub15:11 12 Jan '05  
GeneralFile download link is broke PinmemberEric Engler9:51 2 Aug '04  
GeneralTraceTool PinmemberThierry Parent19:33 29 Jul '04  
GeneralRe: TraceTool Pinmembermitchellm448:44 25 Jun '08  
GeneralProblems PinmemberAlois Kraus3:49 29 Jul '04  
GeneralRe: Problems PinmemberMayank Gupta19:39 29 Jul '04  
GeneralRe: Problems PinmemberThomas Lykke Petersen22:36 24 Jun '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 29 Jul 2004
Article Copyright 2004 by Mayank Gupta
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid