BSGTelemetryOptions
Objective-C
enum BSGTelemetryOptions : NSUInteger {}
Swift
struct BSGTelemetryOptions : OptionSet, @unchecked Sendable
Types of telemetry that may be sent to Bugsnag for product improvement purposes.
-
Errors within the Bugsnag SDK.
Declaration
Objective-C
BSGTelemetryInternalErrors = (1UL << 0)
Swift
static var internalErrors: BSGTelemetryOptions { get }
-
Information about how Bugsnag has been configured.
Declaration
Objective-C
BSGTelemetryUsage = (1UL << 1)
Swift
static var usage: BSGTelemetryOptions { get }
-
All types of telemetry are enabled by default.
Declaration
Objective-C
BSGTelemetryAll = (BSGTelemetryInternalErrors | BSGTelemetryUsage)
Swift
static var all: BSGTelemetryOptions { get }