WS1Intelligence
Initialization¶
enable¶
Initializes Omnissa Intelligence SDK. This method will use the app ID string value specified in the application’s 'info.plist' file with the key ‘WS1IntelligenceAppID’
Declaration
Objective-C
+ (void)enable
Swift
class func enable()
enableWithConfig:¶
Initializes Omnissa Intelligence SDK with a config. This method will use the app ID string value specified in the application’s 'info.plist' file with the key ‘WS1IntelligenceAppID’ After this call completes, changes to the config object will have no affect on the behavior of Omnissa Intelligence SDK.
Declaration
Objective-C
+ (void)enableWithConfig:(WS1Config *)config
Swift
class func enable(withConfig: config)
Parameters
config | Your custom WS1Config |
enableWithAppID:¶
Initializes Omnissa Intelligence SDK with the given App ID (found on the Omnissa Intelligence web portal).
Declaration
Objective-C
+ (void)enableWithAppID:(NSString *)appId
class func enable(withAppID: appID)
Parameters
appId | Your iOS appId |
enableWithAppID:config:¶
Initializes Omnissa Intelligence SDK with the given App ID (found on the Omnissa Intelligence web portal). After this call completes, changes to the config object will have no affect on the behavior of Omnissa Intelligence SDK.
Declaration
Objective-C
+ (void)enableWithAppID:(NSString *)appId config:(WS1Config *)config
Swift
class func enable(withAppID: appID,
config: ws1Config)
Parameters
appId | Your iOS appId |
config | Your custom WS1Config |
Logging Breadcrumbs¶
A breadcrumb is a developer-defined text string (up to 140 characters) that allows developers to capture app run-time information. Example breadcrumbs may include variable values, progress through the code, user actions, or low memory warnings. For an introduction, see Breadcrums Overview.
leaveBreadcrumb:¶
Breadcrumbs provide the ability to track activity within your app. A breadcrumb is a free form string you supply, which will be timestamped. Crash events, or other events, may refer to these for additional diagnostic details.
Breadcrumbs are limited to 140 characters.
Declaration
Objective-C
+ (void)leaveBreadcrumb:(NSString *)breadcrumb
Swift
class func leaveBreadcrumb(breadcrumb: String)
Parameters
breadcrumb | The custom string to leave a breadcrumb, maximum of 140 characters |
setAsyncBreadcrumbMode:¶
By default, breadcrumbs are flushed to disk immediately when written. This is by design - in order to provide an accurate record of everything that happened up until the point your app crashed. To improve performance you can instruct the library to perform all breadcrumb writes on a background thread. This means that breadcrums are not guaranteed to be saved immediately prior to a crash.
Declaration
Objective-C
+ (void)setAsyncBreadcrumbMode:(BOOL)writeAsync
Swift
class func setAsyncBreadcrumbMode(writeAsync: Bool)
Parameters
writeAsync | YES to write breadcrumbs in a background thread |
See also Breadcrums Overview.
Logging Errors and Handled Exceptions¶
logError:¶
Logging errors is a way of reporting NSError errors your app has received. If the method is passed an NSError, the stack trace of the thread that is logging the error will be displayed on the Crittercism web portal.
Logging errors may also be used for tracking NSError errors returned by Apple methods and 3rd party library errors. Errors are grouped by stacktrace, much like crash reports. Errors may be viewed in the “Handled Exceptions” area of the Omnissa Intelligence portal.
Declaration
Objective-C
+ (BOOL)logError:(NSError *)error;
Swift
class func logError(error: Error)
Parameters
error | Error to log |
logError:stacktrace:¶
Logging errors is a way of reporting NSError errors your app has received. If the method is passed an NSError, the stack trace of the thread that is logging the error will be displayed on the Crittercism web portal.
Logging errors may also be used for tracking NSError errors returned by Apple methods and 3rd party library errors. Errors are grouped by stacktrace, much like crash reports. Errors may be viewed in the “Handled Exceptions” area of the Omnissa Intelligence portal.
Declaration
Objective-C
+ (BOOL)logError:(NSError *)error stacktrace:(NSArray *)stacktrace;
Swift
class func logError(error: Error stacktrace: Stacktrace)
Parameters
error | Error to log |
stacktrace | Array of strings representing a stacktrace |
This capability was introduced in SDK v5.9.1
logHandledException:¶
Handled exceptions may be used for tracking exceptions caught in a try/catch statement, 3rd party library exceptions, and monitoring areas in the code that may currently be using assertions. Handled exceptions can also be used to track error events such as low memory warnings. For an introduction, see Handled Exceptions.
Handled exceptions are grouped by stacktrace, much like crash reports. Handled exceptions may be viewed in the “Handled Exceptions” area of the Omnissa Intelligence portal.
Declaration
Objective-C
+ (BOOL)logHandledException:(NSException *)exception
Swift
class func logHandledException(exception: NSException)
Parameters
exception | Exception to log |
See also Introduction to Handled Exception.
Logging Network Request¶
Network Insights data for NSURLSession and NSURLConnection is automatically captured and reported to Omnissa Intelligence simply by initializing the SDK. See Network Insights.
If you want to log network requests manually or customize what data gets reported, use these methods.
addFilter:¶
Adds an additional filter for network instrumentation.
Declaration
Objective-C
+ (void)addFilter:(WS1Filter *)filter
Swift
class func add(filter: WS1Filter)
Parameters
filter | WS1Filter filter to add |
logNetworkRequest:url:latency:bytesRead:bytesSent:responseCode:error:¶
Logging endpoints is a way of manually logging Network Insights data for custom network libraries which fall outside Omnissa Intelligence’s monitoring of NSURLConnection and NSURLSession method calls.
Declaration
Objective-C
+ (BOOL)logNetworkRequest:(NSString *)method
url:(NSURL *)url
latency:(NSTimeInterval)latency
bytesRead:(NSUInteger)bytesRead
bytesSent:(NSUInteger)bytesSent
responseCode:(NSInteger)responseCode
error:(NSError *)error
Swift
class func logNetworkRequest(method: String,
url url: NSURL,
latency latency: NSTimeInterval,
bytesRead bytesRead: Int,
bytesSent bytesSent: Int,
responseCode responseCode: Int,
error error: NSError) -> Bool
Parameters
method | The connection method, such as GET, POST, HEAD, PUT, DELETE, TRACE, OPTIONS, CONNECT, PATCH |
url | The endpoint URL |
latency | The time between start of request and receipt of response, in seconds |
bytesRead | The number of bytes included in response body |
bytesSent | The number of bytes included in request body |
responseCode | HTTP status code, generally 100-599, e.g. 200 == OK, 400 == Bad Request, can be 0 if there is an error |
error | A non-nil error can be logged if network request failed to contact server, etc. Pass nil if there was no error |
Returns YES if the request was properly logged. Returns NO otherwise.
See also:
logNetworkRequest:urlString:latency:bytesRead:bytesSent:responseCode:error:¶
Logging endpoints is a way of manually logging Network Insights data for custom network libraries which fall outside Omnissa Intelligence’s monitoring of NSURLConnection and NSURLSession method calls.
Declaration
Objective-C
+ (BOOL)logNetworkRequest:(NSString *)method
urlString:(NSString *)urlString
latency:(NSTimeInterval)latency
bytesRead:(NSUInteger)bytesRead
bytesSent:(NSUInteger)bytesSent
responseCode:(NSInteger)responseCode
error:(NSError *)error
Swift
class func logNetworkRequest(method: String,
urlString urlString: NSString,
latency latency: NSTimeInterval,
bytesRead bytesRead: Int,
bytesSent bytesSent: Int,
responseCode responseCode: Int,
error error: NSError) -> Bool
Parameters
method | The connection method, such as GET, POST, HEAD, PUT, DELETE, TRACE, OPTIONS, CONNECT, PATCH |
urlstring | The endpoint URL in string |
latency | The time between start of request and receipt of response, in seconds |
bytesRead | The number of bytes included in response body |
bytesSent | The number of bytes included in request body |
responseCode | HTTP status code, generally 100-599, e.g. 200 == OK, 400 == Bad Request, can be 0 if there is an error |
error | A non-nil error can be logged if network request failed to contact server, etc. Pass nil if there was no error |
Returns YES if the request was properly logged. Returns NO otherwise.
updateLocationToLatitude:longitude:¶
Inform Omnissa Intelligence SDK of the device’s most recent location for use with event reporting.
Declaration
Objective-C
+ (void)updateLocationToLatitude:(double)location longitude:(double)longitude
Swift
class func updateLocation(toLatitude: double, longitude: double)
Parameters
latitude | Location of the user / device |
longitude | Location of the user / device |
This capability was introduced in SDK v5.9.3.
Setting Username¶
This interface sets a relationship between a provided username string and the device UUID.
setUsername:¶
Declaration
Objective-C
+ (void)setUsername:(NSString *)username
Swift
class func setUsername(username: String)
Parameters
username | The new username |
Logging User Flows¶
User flows allow developers to track key interactions or user flows in their app such as login, account registration, and in app purchase.
For an introduction, see User Flows Monitoring.
beginUserFlow:¶
Inititializes and begins a user flow
User flows allow developers to track key interactions or user flows in their app such as login, account registration, and in app purchase. The Omnissa Intelligence SDK will automatically track application load time as a user flow. You can specify additional user flows by adding code to your application.
Beginning a user flow starts a user flow. Ending, failing, or cancelling a user flow stops a user flow. Otherwise, the user flow will be marked as crashed or timed out. If a crash occurs, all in progress user flows are marked crashed and will be reported with the crash.
All user flows will appear on Omnissa Intelligence portal except for cancelled user flows.
User flows with the same name are aggregated together in the portal by Omnissa Intelligence. Only one user flow for a given name can be in progress at a given time. If you begin a second user flow with the same name while another is in progress, the first user flow will be cancelled and the new one will take its place.
Declaration
Objective-C
+ (void)beginUserFlow:(NSString *)name
Swift
class func beginUserFlow(name: String)
Parameters
name | The name of the user flow |
See also:
- Introduction to User Flows
- Three Ways to Improve User Experience through User Flows
- Tracking User Experience with Advanced User Flows
beginUserFlow:timeout:¶
Inititializes and begins a user flow with a specified timeout. If the user flow is not otherwise completed before this time elapses, the user flow will be marked as timed out.
User flows allow developers to track key interactions or user flows in their app such as login, account registration, and in app purchase. The Omnissa Intelligence SDK will automatically track application load time as a user flow. You can specify additional user flows by adding code to your application.
Beginning a user flow starts a user flow. Ending, failing, or cancelling a user flow stops a user flow. Otherwise, the user flow will be marked as crashed or timed out. If a crash occurs, all in progress user flows are marked crashed and will be reported with the crash.
All user flows will appear on Omnissa Intelligence portal except for cancelled user flows.
User flows with the same name are aggregated together in the portal by Omnissa Intelligence. Only one user flow for a given name can be in progress at a given time. If you begin a second user flow with the same name while another is in progress, the first user flow will be cancelled and the new one will take its place.
Declaration
Objective-C
+ (void)beginUserFlow:(NSString *)name
timeout:(NSTimeInterval)timeout
Swift
class func beginUserFlow(name: String timeout: TimeInterval)
Parameters
name | The name of the user flow |
timeout | Timeout for this user flow in seconds |
See also:
- Introduction to User Flows
- Three Ways to Improve User Experience through User Flows
- Tracking User Experience with Advanced User Flows
cancelUserFlow:¶
Cancel a user flow as if it never existed. The user flow will not be reported.
Declaration
Objective-C
+ (void)cancelUserFlow:(NSString *)name
Swift
class func cancelUserFlow(name: String)
Parameters
name | The name of the user flow |
endUserFlow:¶
End an already begun user flow successfully.
Declaration
Objective-C
+ (void)endUserFlow:(NSString *)name
Swift
class func endUserFlow(name: String)
Parameters
name | The name of the user flow |
failUserFlow:¶
End an already begun user flow as a failure.
Declaration
Objective-C
+ (void)failUserFlow:(NSString *)name
Swift
class func failUserFlow(name: String)
Parameters
name | The name of the user flow |
Detecting a Crash Occurred¶
You can listen to WS1NotificationDidCrashOnLastLoad
to get more app crash information on the previous run.
didCrashOnLastLoad:¶
Declaration
Objective-C
+ (BOOL)didCrashOnLastLoad
Swift
class func didCrashOnLastLoad -> Bool
Returns YES if the app crashed on the last load, returns NO otherwise.
See also:
Opt In Status¶
Omnissa Intelligence SDK provides an opt-in settings API that can enable or disable reporting for the Omnissa Intelligence features and can enable or disable reporting for the DEX feature. Each feature can be controlled individually. Note that each feature can have different default settings.
This allows developers to implement code that allows end users to decide which reporting features they want to enable for Omnissa Intelligence.
For an introduction, see Opt Out of Omnissa Intelligence.
getOptInStatusForType¶
Returns the current Opt-In status for the specified telemetry instrumentation type.
Declaration
Objective-C
typedef NS_ENUM(NSInteger, WS1TelemetryType) {
WS1TelemetryTypeApplication = 0,
WS1TelemetryTypeDEX,
};
/*!
* @param type Application or DEX
*/
+ (BOOL)getOptInStatusForType:(WS1TelemetryType)type;
Swift
class func getOptInStatus(for: WS1TelemetryType) -> Bool
Parameters
type | WS1TelemetryType enum entry, Application or DEX |
- Application : for Omnissa Intelligence Opt In |
|
- DEX : for Digital Employee Experience Opt In |
Returns
Return YES
(true) if the specified telemetry instrumentation type is opted in.
setOptInStatusForType:andStatus:¶
If you wish to offer your users the ability to opt in or out of Workspace ONE Intelligence data reporting, you can provide a user interface, then set the OptInStatus for them. If OptInStatus is set to false, there will be no information/requests sent from that user's app and any pending crash reports will be purged.
Typically, a developer would connect this API call to a checkbox in a settings menu.
Likewise, you can set this from another configuration source, such as MDM settings.
Declaration
Objective-C
/*! Sets the Opt-In status for telemetry instrumentations, currently the two
* options are Application or DEX. Setting a telemetry instrumentation Opt-In to YES enables the
* collection of telemetry data.
* The default for Application is YES
* The default for DEX is NO
* @param type `Application` or `DEX`
* @param status new Opt-In status
*/
+ (void)setOptInStatusForType:(WS1TelemetryType)type andStatus:(BOOL)status;
Swift
class func setOptInStatusFor(type: WS1TelemetryType, andStatus: Bool)
Parameters
type | WS1TelemetryType enum entry, Application or DEX |
status | set to YES to enable Omnissa Intelligence SDK |
getOptOutStatus (deprecated)¶
Note
getOptOutStatus
is deprecated. Use this API above instead: getOptInStatusForType:
Retrieve current opt out status.
Declaration
Objective-C
+ (BOOL)getOptOutStatus
Swift
class func getOptOutStatus -> Bool
Return YES if the user has opted out of reporting Omnissa Intelligence data.
setOptOutStatus: (deprecated)¶
Note
setOptOutStatus: is deprecated. Use this API above instead: setOptInStatusForType
If you wish to offer your users the ability to opt out of Omnissa Intelligence data reporting, you can set the OptOutStatus to YES. If you do so, there will be no information/requests sent from that user’s app and any pending crash reports will be purged.
Typically, a developer would connect this API call to a checkbox in a settings menu.
Declaration
Objective-C
+ (void)setOptOutStatus:(BOOL)status
Swift
class func setOptOutStatus(status: Bool)
Parameters
status | set to YES to disable Omnissa Intelligence |
Setting Log Verbosity Of Omnissa Intelligence SDK¶
loggingLevel¶
Declaration
Objective-C
+ (WS1IntelligenceLoggingLevel)loggingLevel
Swift
class func loggingLevel() -> WS1IntelligenceLoggingLevel
The current logging level of the verbosity of Omnissa Intelligence SDK log messages.
setLoggingLevel:¶
Set the logging level to tune the verbosity log messages from Omnissa Intelligence SDK. The default value is WS1IntelligenceLoggingLevelWarning.
See WS1IntelligenceLoggingLevel to see various logging levels.
Declaration
Objective-C
+ (void)setLoggingLevel:(WS1IntelligenceLoggingLevel)loggingLevel
Swift
class func setLoggingLevel(loggingLevel: WS1IntelligenceLoggingLevel)
Parameters
loggingLevel | The log verbosity of Omnissa Intelligence SDK |
Omnissa Intelligence SDK Device UUID¶
getUserUUID¶
Get the unique identifier for this device generated by Omnissa Intelligence SDK. This is NOT the device’s UDID.
If called before enabling the SDK, this will return an empty string.
If a Omnissa Intelligence SDK enabled app is removed from a device, a new UUID will be generated when the next app is installed.
Declaration
Objective-C
+ (NSString *)getUserUUID
Swift
class func getUserUUID -> String
Privacy Configuration of Omnissa Intelligence SDK¶
setPrivacyConfiguration(privacyConfig, telemetryFeature)¶
This API helps inject privacy configuration to control transmission of certain TelemetrySDK attributes.
This API can be used to control reporting of certain Telemetry Feature Data such as attributes, events, or entire data collections through a Privacy Configuration map.
Ideally, this API will be used before enablement of Telemetry Features to ensure the all reports adhere to the specified Privacy Configuration.
Declaration
Objective-C
+ (void)setPrivacyConfiguration:(nullable NSDictionary<NSString *, id> *)privacyConfig forType:(WS1TelemetryType)type;
Swift
class func setPrivacyConfiguration(privacyConfig: [String : Any]?, for: WS1TelemetryType)
Parameters
privacyConfig | dictionary containing the necessary key value pairs for the privacy config. |
for | The Telemetry type to be configured for privacy, eg. DEX, ZeroTrust. |
See also:
Exporting Telemetry Data¶
Data collected by the Telemetry Features which are Opted-In can now be exported in asynchronous fashion.
exportTelemetryFeatureData(WS1TelemetryType, of: WS1TelemetryExportDataFormatType, with: WS1TelemetryExportDataCategoryType, andCompletion: (String) -> Void)¶
Declaration
Objective-C
+ (void)exportTelemetryFeatureData:(WS1TelemetryType)telemetryType
ofFormat:(WS1TelemetryExportDataFormatType)dataFormatType
withCategory:(WS1TelemetryExportDataCategoryType)dataCategoryType
andCompletion:(void (^)(NSString* data))completionHandler;
Swift
public class func exportTelemetryFeatureData(dataFormatType: WS1TelemetryType, of: WS1TelemetryExportDataFormatType, with: WS1TelemetryExportDataCategoryType, completion: @escaping (String?) -> Void)
Parameters
telemetryType | WS1TelemetryType enum entry, Application or DEX |
dataFormatType | Format of exported data. JSON is currently the only option. |
dataCategoryType | Which category of Telemetry data to export. eg, attributeData, eventData, or allData |
completionHandler | Handler to asynchronously receive the exported data |