forked from getsentry/sentry-cocoa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSentryTransactionContext.h
76 lines (64 loc) · 2.33 KB
/
SentryTransactionContext.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#if __has_include(<Sentry/Sentry.h>)
# import <Sentry/SentrySampleDecision.h>
# import <Sentry/SentrySpanContext.h>
#else
# import <SentryWithoutUIKit/SentrySampleDecision.h>
# import <SentryWithoutUIKit/SentrySpanContext.h>
#endif
NS_ASSUME_NONNULL_BEGIN
@class SentrySpanId;
@class SentryThread;
NS_SWIFT_NAME(TransactionContext)
@interface SentryTransactionContext : SentrySpanContext
SENTRY_NO_INIT
/**
* Transaction name
*/
@property (nonatomic, readonly) NSString *name;
@property (nonatomic, readonly) SentryTransactionNameSource nameSource;
/**
* Parent sampled
*/
@property (nonatomic) SentrySampleDecision parentSampled;
/**
* Sample rate used for this transaction
*/
@property (nonatomic, strong, nullable) NSNumber *sampleRate;
/**
* If app launch profiling is enabled via @c SentryOptions.enableAppLaunchProfiling and
* @c SentryOptions.tracesSampler and/or @c SentryOptions.profilesSampler are defined,
* @c SentrySDK.startWithOptions will call the sampler function with this property set to @c YES ,
* and the returned value will be stored to disk for the next launch to calculate a sampling
* decision on whether or not to run the profiler.
*/
@property (nonatomic, assign) BOOL forNextAppLaunch;
/**
* @param name Transaction name
* @param operation The operation this span is measuring.
* @return SentryTransactionContext
*/
- (instancetype)initWithName:(NSString *)name operation:(NSString *)operation;
/**
* @param name Transaction name
* @param operation The operation this span is measuring.
* @param sampled Determines whether the trace should be sampled.
*/
- (instancetype)initWithName:(NSString *)name
operation:(NSString *)operation
sampled:(SentrySampleDecision)sampled;
/**
* @param name Transaction name
* @param operation The operation this span is measuring.
* @param traceId Trace Id
* @param spanId Span Id
* @param parentSpanId Parent span id
* @param parentSampled Whether the parent is sampled
*/
- (instancetype)initWithName:(NSString *)name
operation:(NSString *)operation
traceId:(SentryId *)traceId
spanId:(SentrySpanId *)spanId
parentSpanId:(nullable SentrySpanId *)parentSpanId
parentSampled:(SentrySampleDecision)parentSampled;
@end
NS_ASSUME_NONNULL_END