Replies: 2 comments 1 reply
-
You can write your own destructurer and plug that in if you want to customize the way objects are decomposed. |
Beta Was this translation helpful? Give feedback.
-
Instead of writing a custom destructurer, I thought I could just exclude certain properties I don't want, like cookies or request headers. But I guess I'm doing something wrong, because it doesn't seem to be working for me. I'm trying to exclude the cookie and server variables (sv) from the exception. Is this not right? Enrich.WithExceptionDetails(new DestructuringOptionsBuilder().WithFilter(new IgnorePropertyByNameExceptionFilter("cookie", "sv"))) Examples: event.Properties.cookie: LPSID-12757882 |
Beta Was this translation helpful? Give feedback.
-
Does anyone know if it's possible to collapse multi-value fields, like the cookies values, into one property? Instead of having one property per value in the cookies property, I would rather have just one property cookies, with all of the values in the cookies property. Below is an example. Instead of this, I just want event.Properties.cookie, then just a comma or colon separate list of all the values. Is that possible?
"event.Properties.cookie: _hjIncludedInSample"
"event.Properties.cookie: _hjIncludedInSample.keyword"
"event.Properties.cookie: _hjIncludedInSessionSample"
"event.Properties.cookie: _hjIncludedInSessionSample.keyword"
"event.Properties.cookie: _hjTLDTest"
Beta Was this translation helpful? Give feedback.
All reactions