View Source mix sentry.package_source_code (Sentry v10.0.3)
Packages source code for Sentry to use when reporting errors.
This task should be used in production settings, before building a release of your
application. It packages all the source code of your application in a single file
(called sentry.map
), which is optimized for fast retrieval of source code lines.
Sentry then uses this to report source code context. See the documentation for the
Sentry
module for configuration options related to the source code context.
This task is available since v10.0.0 of this library.
usage
Usage
mix sentry.package_source_code
using-in-production
Using in Production
In production settings, call this task before building a release. This way, the source code packaged by this task will be included in the release.
For example, in a release script (this could also be in a Dockerfile
, if you're using
Docker):
# ...
mix sentry.package_source_code
mix release
Runtime Configuration
If you use
config/runtime.exs
for runtime configuration of your application and release, and you also configure the source-context-related options for the:sentry
application in that file (such as:root_source_code_paths
), you'll need to call themix app.config
task before calling this Mix task.mix app.config
loads theconfig/runtime.exs
configuration. Generally, we recommend configuring all the source-context-related options in compile-time config files (likeconfig/config.exs
orconfig/prod.exs
).
options
Options
--debug
- print more information about collecting and encoding source code