index.rst 898 B

12345678910111213141516171819202122
  1. `sentry dsym import-system-symbols [BUNDLES]...`
  2. ------------------------------------------------
  3. Imports system symbols from preprocessed zip files into Sentry.
  4. It takes a list of zip files as arguments that contain preprocessed
  5. system symbol information. These zip files contain JSON dumps. The
  6. actual zipped up dsym files cannot be used here, they need to be
  7. preprocessed.
  8. Options
  9. ```````
  10. - ``--threads INTEGER``: The number of threads to use
  11. - ``--trim-symbols``: If enabled symbols are trimmed before storing. This
  12. reduces the database size but means that symbols are already trimmed on
  13. the way to the database.
  14. - ``--no-demangle``: If this is set to true symbols are never demangled.
  15. By default symbols are demangled if they are trimmed or demangled
  16. symbols are shorter than mangled ones. Enabling this option speeds up
  17. importing slightly.
  18. - ``--help``: print this help page.