Loupe - Log - Monitor - Resolve
Loupe / Developer's Guide / For Java / Agent Configuration / Developer's Guide - Listener Configuration
In This Topic
    Developer's Guide - Listener Configuration
    In This Topic

    The listener section adjusts the configuration of the Loupe .NET Listener that captures information directly from the .NET runtime.  

    Settings that do not apply to a particular application type (for example WinForms settings for an ASP.NET application) will be safely disabled so it is not necessary to explicitly configure them this way.

    Option Description Default Value Required
    EnableConsole When true, anything written to the console standard out or error out will be appended to the log.  These are identified as the console log system and displayed in a distinct section of the viewer. false false
    EnableNetworkEvents When true, network connection events (such as network link state and IP configuration changes) will be automatically recorded. true false

    Example

    Publisher.ProductName=Your Product
    Publisher.ApplicationName=Your Application
    Publisher.ApplicationVersion=1.0.0
    Listener.EnableConsole=true
    
    <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">
    <properties>
        <entry key="Publisher.ProductName">Your Product</entry>
        <entry key="Publisher.ApplicationName">Your Application</entry>
        <entry key="Publisher.ApplicationVersion">1.0.0</entry>
        <entry key="Listener.EnableConsole">true</entry>
    </properties>
    

    See Also