Use Seq logging tool
- Last UpdatedApr 10, 2025
- 1 minute read
Seq is a third-party web application that collects data over HTTP and provides structured logging.
-
Supports .NET libraries including Serilog and ASP.NET Core.

Configure AVEVA Production Management to write to Seq
By default the Seq address is commented out in the configuration file. To enable it, you will need to modify the commenting characters by removing the two hyphens.
For example: <!-- text --> becomes <! text >
To edit the configuration file
-
Navigate to the C:\Program Files\Schneider Electric\Ampla directory.
-
Locate the SE.SPO.AmplaService.exe.config file.
-
Open the configuration file with Notepad or a similar editor.
-
Remove the commenting characters and enter the correct connection details.
<!-- Event Log configuration -->
<add key="serilog:using:EventLog" value="Serilog.Sinks.EventLog" />
<add key="serilog:write-to:EventLog.source" value="Ampla Server" />
<add key="serilog:write-to:EventLog.outputTemplate" value="{Message}{NewLine}{Exception}" />
<add key="serilog:write-to:EventLog.restrictedToMinimumLevel" value="Warning" />
<!-- Default Seq address is http://localhost:5341 -->
<!--add key="serilog:using:Seq" value="Serilog.Sinks.Seq" />
<add key="serilog:write-to:Seq.serverUrl" value="http://localhost:5341/" />
<add key="serilog:write-to:Seq.compact" value="True" />
<add key="serilog:write-to:Seq.restrictedToMinimumLevel" value="Information" /-->