Event Json representation exceeds the byte size limit of 262144 set for this Se sink and will be dropped #1508
-
I want to log about 1.2 MB payload. I had configured Raw event body limit in Seq sever as 10485760. Event Json representation exceeds the byte size limit of 262144 set for this Se sink and will be dropped. While logging on File is working fine. I am using .Net 5 web api and |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi Muhammad, When you call Sending 1.2 MB events will impact UI and search performance, however (I assume you have considered this trade-off, but worth extra thought if this is going to a mission critical/production Seq instance). Hope this helps! |
Beta Was this translation helpful? Give feedback.
Hi Muhammad,
When you call
WriteTo.Seq()
, there's another parametereventBodyLimitBytes
- you'll also need to pass the bigger value through here, or the sink will drop the event before ever sending it to the server.Sending 1.2 MB events will impact UI and search performance, however (I assume you have considered this trade-off, but worth extra thought if this is going to a mission critical/production Seq instance).
Hope this helps!
Nick