Disable network monitoring
Normally, Splunk MINT monitors all network calls, but you can add URLs to a monitoring deny list to ignore any requests to these URLs. For example, you can add "www.facebook.com" to your deny list to ignore requests to this site.
- To add a URL to the network monitoring blacklist, use the addURLToBlackList: method as follows:
- To disable network monitoring entirely, use the disableNetworkMonitoring: method before the initAndStartSessionWithAPIKey: method as follows:
// Objective-C [[Mint sharedInstance] addURLToBlackList:@"www.facebook.com"];
// Swift Mint.sharedInstance().addURLToBlackList("www.facebook.com")
// Objective-C [[Mint sharedInstance] disableNetworkMonitoring]; [[Mint sharedInstance] initAndStartSessionWithAPIKey:@"API_KEY"];
// Swift Mint.sharedInstance().enableNetworkMonitoring = true/false Mint.sharedInstance().initAndStartSessionWithAPIKey("API_KEY")
Trace Objective-C methods | Report debugging messages |
This documentation applies to the following versions of Splunk MINT™ SDK for iOS (Legacy): 5.2.x
Feedback submitted, thanks!