-
-
Notifications
You must be signed in to change notification settings - Fork 516
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
why data in extend data will be split? #1338
Comments
What client and client version are you using? Please make sure you are using the latest version. If you have the issue with the latest version please include a small snippet that reproduces the issue |
Exceptionless.AspNetCore 6.0.2 code: //init code:
builder.Services.AddLogging(builder =>
{
builder.AddExceptionless(options=>{
options.AddPlugin(ctx =>{
ctx.Event.SetProperty("fullMessage", ctx.Event.Message);
})
});
});
//log code:
var list = Enumerable.Range(0, 1000).Select(p => $"{p}:{Guid.NewGuid()}");
_logger.LogInformation(list.ToJsonString()); |
What's the raw output of your toJsonString method? |
|
Thanks for that, I can't think of anything that would be causing this. Can you please try debugging this by looking at the event being posted or post a new event via our api and put this raw json in the event data dictionary property. |
@sampsonye nice catch, any chance you can submit a pr for this. |
I see that you have an object of data instead of an array, so if you could post your entire event json as mentioned above that would be great. I've resolved the sort and naming issue in the latest nightly build. |
The text was updated successfully, but these errors were encountered: