The networkViewer configuration section controls if a live data stream is available for the current session.
Configuration Type | Path |
---|---|
JSON File | Loupe.NetworkViewer |
Environment Variable | Loupe__NetworkViewer |
Option | Description | Default Value | Required |
---|---|---|---|
Enabled | When true, Loupe data will be made available to clients in real time over TCP/IP. | false | false |
AllowLocalClients |
Enables connecting a viewer on the local computer when true. |
true | false |
AllowRemoteClients |
Enables connecting a viewer from another computer when true. |
false | false |
MaxQueueLength |
The maximum number of queued messages waiting to be written to disk. Once the total number of messages waiting to be written exceeds the maximum queue length the log writer will switch to a synchronous mode to catch up. This will not cause the application to experience synchronous logging behavior unless the publisher queue is also filled. |
2000 | false |
Network Viewer Configuration |
Copy Code
|
---|---|
{ "Loupe": { "Publisher": { "ProductName": "AspNetCore2.Sandbox", "ApplicationName": "Test", "ApplicationType": "AspNet", "ApplicationVersionNumber": "1.0.1" }, "NetworkViewer": { "AllowRemoteClients" : true } } } |
Environment Configuration |
Copy Code
|
---|---|
Loupe__NetworkViewer__AllowRemoteClients=True |