Splunk MINT SDK for iOS (Legacy)

Splunk MINT SDK for iOS Developer Guide

Acrobat logo Download manual as PDF


Splunk MINT is no longer available for purchase as of January 29, 2021. Customers who have already been paying to ingest and process MINT data in Splunk Enterprise will continue to receive support until December 31, 2021, which is End of Life for all MINT products: App, Web Service (Management Console), SDK and Add-On.
This documentation does not apply to the most recent version of Splunk MINT SDK for iOS (Legacy). For documentation on the most recent version, go to the latest release.
Acrobat logo Download topic as PDF

Disable network monitoring for URLs

Normally, Splunk MINT monitors all network calls, but you can add URLs to a monitoring blacklist to ignore any requests to these URLs. For example, you can add "www.facebook.com" to your blacklist to ignore requests to this site.

  • To add a URL to the network monitoring blacklist, use the addURLToBlackList: method as follows:
  • // Objective-C
    [[Mint sharedInstance] addURLToBlackList:@"www.facebook.com"];
    
    // Swift 
    Mint.sharedInstance().addURLToBlackList("www.facebook.com")
    
  • To disable network monitoring entirely, use the disableNetworkMonitoring: method before the initAndStartSessionWithAPIKey: method as follows:
  • // Objective-C
    [[Mint sharedInstance] disableNetworkMonitoring];
    [[Mint sharedInstance] initAndStartSessionWithAPIKey:@"API_KEY"];
    
    // Swift 
    Mint.sharedInstance().enableNetworkMonitoring = true/false
    Mint.sharedInstance().initAndStartSessionWithAPIKey("API_KEY")
    
Last modified on 29 February, 2016
PREVIOUS
Trace Objective-C methods
  NEXT
Report debugging messages

This documentation applies to the following versions of Splunk MINT SDK for iOS (Legacy): 5.0.x, 5.1.x


Was this documentation topic helpful?


You must be logged into splunk.com in order to post comments. Log in now.

Please try to keep this discussion focused on the content covered in this documentation topic. If you have a more general question about Splunk functionality or are experiencing a difficulty with Splunk, consider posting a question to Splunkbase Answers.

0 out of 1000 Characters