SEQ message size limits


A SEQ server has a default limit of 262,144 bytes for the body of log message.  In some cases where the on-premise AWEIS service is writing debug messages that includes large MIMOSA XML messages, this limit may be insufficient.  In order to accommodate larger messages, it is necessary to change both the SEQ server settings and the AWEIS on-premise application settings.

The SEQ server setting is changed under Settings | System.

For the AWEIS on-premise server, the setting is found in the Logging section of the AppSettings.json file.

The SeqEventBodyLimitBytes property should be set to match the SEQ server setting.

"Logging": {
"SeqServerUrl": "http://localhost:5341",
"SeqEventBodyLimitBytes" : "1048576",
"IncludeScopes": false,
"LogLevel": {
"Default": "Debug"
}
},