Hi,
I’m using the latest Cocoa Sdk, and having trouble at grouping Sentries.
My use case:
- Sending an event with a message that contains a timestamp.
- How I send the event:
[[SentryClient sharedClient] snapshotStacktrace:^{
SentryEvent *event = [[SentryEvent alloc]initWithLevel:kSentrySeverityError];
[event setMessage:message];
[event setUser:[[SentryUser alloc] initWithUserId:userId]]; // user email
[[SentryClient sharedClient] appendStacktraceToEvent:event];
[[SentryClient sharedClient] sendEvent:event withCompletionHandler:NULL];
}];
Note: the above shows no stacktrace, but threads on my issue… - Expected result:
The groupeded issue with the two events attached. - Actual result:
Two different issues, probably becouse the grouping was by message content.
The thread on both issues is the same, including the tags.
I’ve tried multiple things and still can’t get it to work, even when using
[event setFingerprint:fingerprintArr];
with a common fingerprint didn’t made the group to work.
Can you please assist?