🔕 If you want AppSignal to mute error notifications rather than ignore them,
read our Notification Settings Documentation to learn how to
customize your application’s notification settings.
Ignoring errors
To ignore errors you can configure an “ignore errors” denylist in your AppSignal integration configuration. By adding error names to this list the integrations will filter out ignored errors from data sent to AppSignal. This guide will show you how to configure your ignore errors denylist based on what language your application uses:Ruby
To ignore errors in Ruby, add the following to your AppSignal configuration file. Theignore_errors value is an Array of Strings.
Read More
- Read more about the Ruby
ignore_errorsconfig option. - Exception handling with AppSignal in Ruby.
Elixir
To ignore errors in Elixir, add the following to your AppSignal configuration file. Theignore_errors value is a List of Strings.
Read More
- Read more about the Elixir
ignore_errorsconfig option. - Exception handling with AppSignal in Elixir.
Node.js
To ignore errors in Node.js, add the following to your AppSignal configuration file. TheignoreErrors value is an Array of Strings.
Read More
- Read more about the Node.js
ignoreErrorsconfig option. - Exception handling with AppSignal in Node.js.
Python
To ignore errors in Python, add the following to your AppSignal configuration file. Theignore_errors value is a list of strings.
Read More
- Read more about the Python
ignore_errorsconfig option. - Exception handling with AppSignal in Python.
Front-end JavaScript
To ignore errors in Front-end JavaScript, add the following to your AppSignal configuration file. TheignoreErrors value is an Array of Regular expressions.
Read More
- Read more about the front-end JavaScript
ignoreErrorsconfig option. - Exception handling with AppSignal in front-end JavaScript.
Go
To ignore errors in Go applications, configure theignore_errors config option.
Error names are matched exactly by their name, not by inheritance. You can see a list of errors in the “Action and error type” column of the Issue list under Errors in the sidebar. To ignore a specific error, copy the name as it appears in the UI and add it to the ignore_errors option.
See the Go configuration page for more information on how to configure OpenTelemetry for Go apps.
Read More
- Read more about the Go
ignore_errorsconfig option.
Java
To ignore errors in Java applications, configure theignore_errors config option using the OTEL_RESOURCE_ATTRIBUTES environment variable.
Error names are matched exactly by their name, not by inheritance. You can see a list of errors in the “Action and error type” column of the Issue list under Errors in the sidebar. To ignore a specific error, copy the name as it appears in the UI and add it to the ignore_errors option.
See the Java configuration page for more information on how to configure OpenTelemetry for Java apps.
Read More
- Read more about the Java
ignore_errorsconfig option.
PHP
To ignore errors in PHP applications, configure theignore_errors config option.
Read More
- Read more about the PHP
ignore_errorsconfig option.