You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sentry-async-profiler/src/main/java/io/sentry/asyncprofiler/provider/AsyncProfilerProfileConverterProvider.java
Copy file name to clipboardExpand all lines: sentry/api/sentry.api
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1584,6 +1584,11 @@ public final class io/sentry/NoOpLogger : io/sentry/ILogger {
1584
1584
public fun log (Lio/sentry/SentryLevel;Ljava/lang/Throwable;Ljava/lang/String;[Ljava/lang/Object;)V
1585
1585
}
1586
1586
1587
+
public final class io/sentry/NoOpProfileConverter : io/sentry/IProfileConverter {
1588
+
public fun convertFromFile (Ljava/lang/String;)Lio/sentry/protocol/profiling/SentryProfile;
1589
+
public static fun getInstance ()Lio/sentry/NoOpProfileConverter;
1590
+
}
1591
+
1587
1592
public final class io/sentry/NoOpReplayBreadcrumbConverter : io/sentry/ReplayBreadcrumbConverter {
1588
1593
public fun convert (Lio/sentry/Breadcrumb;)Lio/sentry/rrweb/RRWebEvent;
1589
1594
public static fun getInstance ()Lio/sentry/NoOpReplayBreadcrumbConverter;
@@ -2902,6 +2907,7 @@ public final class io/sentry/SentryEnvelopeItem {
2902
2907
public static fun fromEvent (Lio/sentry/ISerializer;Lio/sentry/SentryBaseEvent;)Lio/sentry/SentryEnvelopeItem;
2903
2908
public static fun fromLogs (Lio/sentry/ISerializer;Lio/sentry/SentryLogEvents;)Lio/sentry/SentryEnvelopeItem;
2904
2909
public static fun fromProfileChunk (Lio/sentry/ProfileChunk;Lio/sentry/ISerializer;)Lio/sentry/SentryEnvelopeItem;
2910
+
public static fun fromProfileChunk (Lio/sentry/ProfileChunk;Lio/sentry/ISerializer;Lio/sentry/IProfileConverter;)Lio/sentry/SentryEnvelopeItem;
2905
2911
public static fun fromProfilingTrace (Lio/sentry/ProfilingTraceData;JLio/sentry/ISerializer;)Lio/sentry/SentryEnvelopeItem;
2906
2912
public static fun fromReplay (Lio/sentry/ISerializer;Lio/sentry/ILogger;Lio/sentry/SentryReplayEvent;Lio/sentry/ReplayRecording;Z)Lio/sentry/SentryEnvelopeItem;
2907
2913
public static fun fromSession (Lio/sentry/ISerializer;Lio/sentry/Session;)Lio/sentry/SentryEnvelopeItem;
@@ -3394,6 +3400,7 @@ public class io/sentry/SentryOptions {
3394
3400
public fun getPerformanceCollectors ()Ljava/util/List;
3395
3401
public fun getProfileLifecycle ()Lio/sentry/ProfileLifecycle;
3396
3402
public fun getProfileSessionSampleRate ()Ljava/lang/Double;
3403
+
public fun getProfilerConverter ()Lio/sentry/IProfileConverter;
3397
3404
public fun getProfilesSampleRate ()Ljava/lang/Double;
3398
3405
public fun getProfilesSampler ()Lio/sentry/SentryOptions$ProfilesSamplerCallback;
3399
3406
public fun getProfilingTracesDirPath ()Ljava/lang/String;
@@ -3539,6 +3546,7 @@ public class io/sentry/SentryOptions {
3539
3546
public fun setPrintUncaughtStackTrace (Z)V
3540
3547
public fun setProfileLifecycle (Lio/sentry/ProfileLifecycle;)V
3541
3548
public fun setProfileSessionSampleRate (Ljava/lang/Double;)V
3549
+
public fun setProfilerConverter (Lio/sentry/IProfileConverter;)V
3542
3550
public fun setProfilesSampleRate (Ljava/lang/Double;)V
3543
3551
public fun setProfilesSampler (Lio/sentry/SentryOptions$ProfilesSamplerCallback;)V
3544
3552
public fun setProfilingTracesDirPath (Ljava/lang/String;)V
@@ -7055,6 +7063,8 @@ public final class io/sentry/util/HttpUtils {
7055
7063
7056
7064
public final class io/sentry/util/InitUtil {
7057
7065
public fun <init> ()V
7066
+
public static fun initializeProfileConverter (Lio/sentry/SentryOptions;)Lio/sentry/IProfileConverter;
7067
+
public static fun initializeProfiler (Lio/sentry/SentryOptions;)Lio/sentry/IContinuousProfiler;
7058
7068
public static fun shouldInit (Lio/sentry/SentryOptions;Lio/sentry/SentryOptions;Z)Z
0 commit comments