Objective-C library for crash reporting and logging with Rollbar.
-
Download the Rollbar framework.
-
Extract the Rollbar directory in the zip file to your Xcode project directory.
-
In Xcode, select File -> Add Files to "[your project name]" and choose the Rollbar directory from step 2.
-
In your Application delegate implementation file, add the following import statement:
#import <Rollbar/Rollbar.h>
Then add the following to application:didFinishLaunchingWithOptions:
:
[Rollbar initWithAccessToken:@"POST_CLIENT_ITEM_ACCESS_TOKEN"];
Replace POST_CLIENT_ITEM_ACCESS_TOKEN
with a client scope access token from your project in Rollbar
That's all you need to do to report crashes to Rollbar. To get symbolicated stack traces, follow the instructions in the "Symbolication" section below.
Crashes will be saved to disk when they occur, then reported to Rollbar the next time the app is launched.
Rollbar uses PLCrashReporter to capture uncaught exceptions and fatal signals. Note that only one crash reporter can be active per app. If you initialize multiple crash reporters (i.e. Rollbar alongside other services), only the last one initialized will be active.
You can log arbitrary messages using the log methods:
// Logs at level "info".
// Variants at "debug", "info", "warning", "error", and "critical" all exist.
[Rollbar infoWithMessage:@"Test message"];
// Log a critical, with some additional key-value data
[Rollbar criticalWithMessage:@"Unexcpected data from server" data:@{@"endpoint": endpoint,
@"result": result}];
// Or log at a named level
[Rollbar logWithLevel:@"warning" message:@"Simple warning log message"];
You can pass an optional RollbarConfiguration
object to initWithAccessToken:
:
RollbarConfiguration *config = [RollbarConfiguration configuration];
config.crashLevel = @"critical";
config.environment = @"production";
[Rollbar initWithAccessToken:@"POST_CLIENT_ITEM_ACCESS_TOKEN" configuration:config];
You can also configure the notifier after initialization by getting the active configuration object and modifying it:
RollbarConfiguration *config = [Rollbar currentConfiguration];
[config setPersonId:@"123" username:@"username" email:@"test@test.com"];
// Will now report with person data
[Rollbar debugWithMessage:@"User hit button A"];
Properties:
- crashLevel
- The level that crashes are reported as
Default:
error
- environment
- Environment that Rollbar items will be reported under
Default:
unspecified
in release mode,development
in debug mode. - endpoint
- URL items are posted to.
Default:
https://api.rollbar.com/api/1/items/
Methods:
- `- setPersonId:username:email:`
- Sets person data. Each value can either be a `NSString` or `nil`
To automatically send .dSYM files to Rollbar whenever your app is built in release mode, add a new build phase to your target in Xcode:
-
Click on your project and then select "Build Phases"
-
In the top menu bar, click "Editor" and then "Add Build Phase", then "Add Run Script Build Phase"
-
Change the "Shell" to
/usr/bin/python
-
Paste the following script into the box, using "Paste and Preserve Formatting" (Edit -> Paste and Preserve Formatting):
import os
import subprocess
import zipfile
if os.environ['DEBUG_INFORMATION_FORMAT'] != 'dwarf-with-dsym' or os.environ['EFFECTIVE_PLATFORM_NAME'] == '-iphonesimulator':
exit(0)
ACCESS_TOKEN = 'POST_SERVER_ITEM_ACCESS_TOKEN'
dsym_file_path = os.path.join(os.environ['DWARF_DSYM_FOLDER_PATH'], os.environ['DWARF_DSYM_FILE_NAME'])
zip_location = '%s.zip' % (dsym_file_path)
os.chdir(os.environ['DWARF_DSYM_FOLDER_PATH'])
with zipfile.ZipFile(zip_location, 'w') as zipf:
for root, dirs, files in os.walk(os.environ['DWARF_DSYM_FILE_NAME']):
zipf.write(root)
for f in files:
zipf.write(os.path.join(root, f))
p = subprocess.Popen('/usr/libexec/PlistBuddy -c "Print :CFBundleVersion" -c "Print :CFBundleIdentifier" "%s"' % os.environ['PRODUCT_SETTINGS_PATH'],
stdout=subprocess.PIPE, shell=True)
stdout, stderr = p.communicate()
version, identifier = stdout.split()
p = subprocess.Popen('curl -X POST https://api.rollbar.com/api/1/dsym -F access_token=%s -F version=%s -F bundle_identifier="%s" -F dsym=@"%s"'
% (ACCESS_TOKEN, version, identifier, zip_location), shell=True)
p.communicate()
Note: make sure you replace POST_SERVER_ITEM_ACCESS_TOKEN
with a server scope access token from your project in Rollbar.
You can include the Rollbar project as a sub-project in your app, or link the Rollbar source files directly into your app. To develop the library by linking the source files directly in your app:
- Fork this repo
- git clone your fork
- In Xcode, remove the Rollbar files from your project if they are currently there
- In Xcode, add the Rollbar/ files:
- Right-click your project
- Click "Add Files to "
- Navigate to your rollbar-ios clone and select the Rollbar folder
- Click "Add"
- In Xcode, add the PLCrashReporter framework:
- Click your project
- Click the General settings tab
- Under "Linked Frameworks and Libraries", click the +
- Click "Add Other..."
- Navigate to your rollbar-ios clone, then Vendor/
- Select CrashReporter.framework and click "Open"
You should now be able to build your app with your local clone of rollbar-ios.
To build the Rollbar framework distribution files, open the Rollbar project and make sure the Distribution scheme is active by selecting Editor -> Scheme -> Distribution. Building the project with this scheme selected will create a Dist/
directory containing the Rollbar framework with the proper fat binary.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
If you run into any problems, please email us at support@rollbar.com
or file a bug report.