Skip to content
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

Add slow and frozen frames span data conventions #3086

Merged
merged 1 commit into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions sentry/api/sentry.api
Original file line number Diff line number Diff line change
Expand Up @@ -2563,6 +2563,9 @@ public abstract interface class io/sentry/SpanDataConvention {
public static final field CALL_STACK_KEY Ljava/lang/String;
public static final field DB_NAME_KEY Ljava/lang/String;
public static final field DB_SYSTEM_KEY Ljava/lang/String;
public static final field FRAMES_FROZEN Ljava/lang/String;
public static final field FRAMES_SLOW Ljava/lang/String;
public static final field FRAMES_TOTAL Ljava/lang/String;
public static final field HTTP_FRAGMENT_KEY Ljava/lang/String;
public static final field HTTP_METHOD_KEY Ljava/lang/String;
public static final field HTTP_QUERY_KEY Ljava/lang/String;
Expand Down
3 changes: 3 additions & 0 deletions sentry/src/main/java/io/sentry/SpanDataConvention.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,7 @@ public interface SpanDataConvention {
String CALL_STACK_KEY = "call_stack";
String THREAD_ID = "thread.id";
String THREAD_NAME = "thread.name";
String FRAMES_TOTAL = "frames.total";
String FRAMES_SLOW = "frames.slow";
String FRAMES_FROZEN = "frames.frozen";
}
Loading