Associating logging from two or more processes

Posted by Fadeproof on Stack Overflow See other posts from Stack Overflow or by Fadeproof
Published on 2009-02-20T13:13:51Z Indexed on 2010/04/17 23:03 UTC
Read the original article Hit count: 251

Filed under:
|

I have two processes that I have up and running and I am doing logging from. One is a client the other is a webservice. I want to setup a central log system where I can track logs and interactions between processes -- for instance I want to be able to associate calls made from the client to the webservice when I look at the logs. I guess this means that somehow the processid of the client process needs to flow over to the webservice in some way for it to be trackable?

Is this possible with current logging frameworks such as Enterprise Library or Log4Net? Is there anyone that has looked into something like this?

Any help would be appreciated.

If you have a more defining term for this please feel free to change the title of the question or tags.

© Stack Overflow or respective owner

Related posts about logging

Related posts about .NET