Download PDF
Download page Upload the dSYM File.
Upload the dSYM File
Related pages:
AppDynamics requires the dSYM file for the application to produce human-readable stack traces for crash snapshots. For details about the importance of snapshots, see Get Human-Readable Crash Snapshots.
If you update the application, you are required to provide the new dSYM file for the new application version. The dSYM file contains a UUID that links it to a specific Xcode build, so AppDynamics can unambiguously match the correct dSYM file with an incoming crash report with no additional information.
To upload the dSYM file:
- Set up your environment to upload the file automatically each time you build or upload the file manually.
Enable the dSYM File
To enable the agent to provide human-readable information in the crash snapshots that are produced if the application crashes, compile with the DWARF with dSYM
file option to create a debug symbols file for the application.
To enable dSYM:
- In Xcode, select your project in the Project Navigator.
- In the target list, select the target that builds your application.
- Select the Build Settings tab.
In the Build Options section, make sure that the Debugging Information Format is set to
DWARF with dSYM File
.
Automatically Upload the dSYM File to AppDynamics with Each Build
Automating the upload of your dSYM file reduces the number of manual steps required for each build and ensures that all builds have appropriate dSYM files available for AppDynamics to use.
- In Xcode, select your project from the Project Navigator.
- Click on the application target.
- Select the Build Phase tab in the Settings editor.
- Click the + icon in the upper left corner of the main panel.
- Select New Run Script Phase from the dropdown.
In the script box, add these lines:
export ADRUM_ACCOUNT_NAME="<Account_Name_HERE>" // From the View License - End User Monitoring section of the License Page export ADRUM_LICENSE_KEY="<License_Key_HERE>" // From the View License - End User Monitoring section of the License Page SCRIPT=$(/usr/bin/find "${SRCROOT}" -name xcode_build_dsym_upload.sh | head -n 1) /bin/sh "${SCRIPT}"
SWIFTThere are also some optional parameters you can set if desired. To set them, add the following line(s) after the second
export
statement above. Set to1
to enable.export ADRUM_UPLOAD_WHEN_BUILT_FOR_SIMULATOR=0 export ADRUM_TREAT_UPLOAD_FAILURES_AS_ERRORS=0 export ADRUM_EUM_PROCESSOR="<EUM_SERVER_URL>"
SWIFTThe last statement should be used to set the URL for regional cloud location for SaaS-based EUM accounts, or for on-premise server.
Manually Upload the dSYM File to AppDynamics
To upload the file manually:
- Get the dSYM file from Xcode.
- Upload the dSYM file to AppDynamics using the UI
or
Upload the dSYM File to AppDynamics Using the API. - Check Uploaded dSYMs Using the REST API.
Get the dSYM file from Xcode
- In Xcode, run the Xcode build: Product > Build.
View the log navigator: View > Navigators > Show Report Navigator.
Older versions of Xcode used Show Log Navigator.
- Click the log entry for the most recent build.
- Near the end of the log, find and mouse over the log entry named
Generate <Your_App_Name>.app.dSYM
. - Click the button on the right side of the entry to expand it.
The end of the displayed command is the path to the dSYM file. - Navigate to this dSYM file in the Finder.
- Right-click on the dSYM file and choose Compress.
- Upload to AppDynamics the
.zip
file that Finder generates.
Upload the dSYM File to AppDynamics Using the UI
- From the Mobile App menu, click Configuration.
- Click Mobile App Configuration.
- Under dSYM Files, click the + icon.
- From the Upload Missing dSYM Mapping dialog, click Choose File.
The uploader expects a file with a.zip
extension. - In the file browser, select the zipped dSYM file for your instrumented application.
- Click Upload.
Upload the dSYM File to AppDynamics Using the REST API
The API uses HTTP basic authentication. The username is your EUM account name and the password is your EUM license key.
Set up your HTTP basic authentication credentials
In the upper-right corner of the Controller UI, click Settings > License.
- From the Account Usage tab, swipe down to the User Experience section.
- Click Show next to License Key to display the EUM license key. This is your password for authentication.
- URL-encode the EUM account name and the EUM license key.
Send the dSYM File
Send the dSYM as a zip archive in the body of a PUT
request to following URI:
https://api.eum-appdynamics.com/v2/account/<EUM_Account_Name>/ios-dsym
https://fra-api.eum-appdynamics.com/v2/account/<EUM_Account_Name>/ios-dsym
https://syd-api.eum-appdynamics.com/v2/account/<EUM_Account_Name>/ios-dsym
-H Content-Type:application/octet-stream
, and your URL-encoded account name (the username) and license key (the password) to the call.Sample Request and Response
This is a sample request and response using the REST API.
Upload Request
The following example uses curl
to send a dSYMm file named UISampleApp.app.dSYM.zip
. The EUM account name is "Example account" and the password is "Example-License-Key-4e8ec2ae6cfe", the EUM License Key. The plus signs replace spaces in the account name when the account name is URL-encoded.
curl -v -H Content-Type:application/octet-stream --upload-file UISampleApp.app.dSYM.zip --user Example account:Example-License-Key-4e8ec2ae6cfe https://api.eum-appdynamics.com/v2/account/Example+account/ios-dsym
curl -v -H Content-Type:application/octet-stream --upload-file UISampleApp.app.dSYM.zip --user Example account:Example-License-Key-4e8ec2ae6cfe https://fra-api.eum-appdynamics.com/v2/account/Example+account/ios-dsym
curl -v -H Content-Type:application/octet-stream --upload-file UISampleApp.app.dSYM.zip --user Example account:Example-License-Key-4e8ec2ae6cfe https://syd-api.eum-appdynamics.com/v2/account/Example+account/ios-dsym
Upload Response
The successful output of the sample request looks like this:
* About to connect() to api.eum-appdynamics.com port 443 (#0)* Trying ::1...
* connected
* Connected to api.eum-appdynamics.com (::1) port 443 (#0)
* Server auth using Basic with user 'Example+account'
> PUT /v2/account/Example+Account/ios-dsym HTTP/1.1
> Authorization: Basic SW50ZXJuYWwrdGVzdCthY2NvdW50OlRlc3RBY2N0LTFlMzktNDVkMy05MzAzLTRlOGVjMmFlNmNmZQ==
> User-Agent: curl/7.24.0 (x86_64-apple-darwin12.0) libcurl/7.24.0 OpenSSL/0.9.8y zlib/1.2.5
> Host: localhost:7001
> Accept: */*
> Content-Length: 0
> Expect: 100-continue
>
< HTTP/1.1 100 Continue
< HTTP/1.1 200 OK
< Content-Length: 0
< Server: Jetty(8.1.4.v20120524)
<
* Connection #0 to host api.eum-appdynamics.com left intact
* Closing connection #0
* About to connect() to fra-api.eum-appdynamics.com port 443 (#0)* Trying ::1...
* connected
* Connected to fra-api.eum-appdynamics.com (::1) port 443 (#0)
* Server auth using Basic with user 'Example+account'
> PUT /v2/account/Example+Account/ios-dsym HTTP/1.1
> Authorization: Basic SW50ZXJuYWwrdGVzdCthY2NvdW50OlRlc3RBY2N0LTFlMzktNDVkMy05MzAzLTRlOGVjMmFlNmNmZQ==
> User-Agent: curl/7.24.0 (x86_64-apple-darwin12.0) libcurl/7.24.0 OpenSSL/0.9.8y zlib/1.2.5
> Host: localhost:7001
> Accept: */*
> Content-Length: 0
> Expect: 100-continue
>
< HTTP/1.1 100 Continue
< HTTP/1.1 200 OK
< Content-Length: 0
< Server: Jetty(8.1.4.v20120524)
<
* Connection #0 to host fra-api.eum-appdynamics.com left intact
* Closing connection #0
* About to connect() to syd-api.eum-appdynamics.com port 443 (#0)* Trying ::1...
* connected
* Connected to syd-api.eum-appdynamics.com (::1) port 443 (#0)
* Server auth using Basic with user 'Example+account'
> PUT /v2/account/Example+Account/ios-dsym HTTP/1.1
> Authorization: Basic SW50ZXJuYWwrdGVzdCthY2NvdW50OlRlc3RBY2N0LTFlMzktNDVkMy05MzAzLTRlOGVjMmFlNmNmZQ==
> User-Agent: curl/7.24.0 (x86_64-apple-darwin12.0) libcurl/7.24.0 OpenSSL/0.9.8y zlib/1.2.5
> Host: localhost:7001
> Accept: */*
> Content-Length: 0
> Expect: 100-continue
>
< HTTP/1.1 100 Continue
< HTTP/1.1 200 OK
< Content-Length: 0
< Server: Jetty(8.1.4.v20120524)
<
* Connection #0 to host syd-api.eum-appdynamics.com left intact
* Closing connection #0
Check Uploaded dSYMs Using the REST API
You can check to make sure that your dSYMs have successfully uploaded using two REST APIs.
- Get a list of the UUIDs for the last 50 dSYMs you have uploaded.
- Check if a specific dSYM has been uploaded.
List of the Last 50 dSYMs Uploaded
The dsymQuery
method allows you to retrieve a list of UUIDs for up to the last 50 dSYM files that have been uploaded to your account, along with the time they were uploaded. The response is displayed as JSON, by upload time, with the most recent first.
Set up your authentication as described in Upload the dSYM File to AppDynamics Using the REST API.
Create a GET request of the form:
curl --user Example+account:Example-License-Key-4e8ec2ae6cfe https://<EUM_Cloud/Server_Host:Port>/v2/account/Example+account/crash-symbol-file-query/dsym
BASH- EUM_Cloud
refers to SaaS-based EUM Cloud URLs. For a complete list, see Cisco AppDynamics SaaS Domains and IP Ranges.- EUM_Server_Host
refers to the URL pointing to your on-premises EUM Server.- EUM_Account_Name
is your EUM account name.- GUID_To_Check
is the GUID of the ProGuard file in which you are interested.
Sample Request
curl --user Example+account:Example-License-Key-4e8ec2ae6cfe https://api.eum-appdynamics.com:443/v2/account/Example+account/crash-symbol-file-query/dsym
curl --user Example+account:Example-License-Key-4e8ec2ae6cfe https://fra-api.eum-appdynamics.com:443/v2/account/Example+account/crash-symbol-file-query/dsym
curl --user Example+account:Example-License-Key-4e8ec2ae6cfe https://syd-api.eum-appdynamics.com:443/v2/account/Example+account/crash-symbol-file-query/dsym
Sample Response
{"dSymFiles":[
{"uploadTime":"mm/dd/yyyy 14:15:32","UUID2":"my_uuid2"},
{"uploadTime":"mm/dd/yyyy 14:15:32","UUID":"my_uuid"}
]}
Check for Specific dSYM by UUID
The checkForDSymFile
method allows you to check if a specific dSYM by UUID has been uploaded. The upload time is returned in the response.
- Set up your authentication as described in Upload the dSYM File to AppDynamics Using the REST API.
Create a GET request of the form:
curl --user Example+account:Example-License-Key-4e8ec2ae6cfe https://<EUM_Cloud/Server_Host:Port>/v2/account/Example+account/crash-symbol-file-query/dsym/uuid/<UUID_to_Check>
BASH- EUM_Cloud
refers to SaaS-based EUM Cloud URLs. For a complete list, see Cisco AppDynamics SaaS Domains and IP Ranges.- EUM_Server_Host
refers to the URL pointing to your on-premises EUM Server.- EUM_Account_Name
is your EUM account name.- GUID_To_Check
is the GUID of the ProGuard file in which you are interested.Sample Request
curl --user Example+account:Example-License-Key-4e8ec2ae6cfe https://<EUM_Cloud/Server_Host:Port>/v2/account/Example+account/crash-symbol-file-query/dsym/uuid/<UUID_to_Check>
BASH
Sample Response{"uploadTime":"mm/dd/yyyy 14:15:32","UUID":"my_uuid"}
JSON