Ignore Actions
There may be specific actions in your application you don't want to report to AppSignal. The most common use case is a web endpoint that your load balancer uses to check if your application is still responding or all actions that occur within your application's admin panel.
These endpoints may receive a lot of traffic but are not crucial endpoints to have AppSignal monitor and may disrupt the usability of metrics AppSignal provides you for your application's namespaces.
Ignoring Actions
Specific actions can ignore actions by using the "ignore actions" option in your application's AppSignal integration configuration. The "ignore actions" configuration option allows you to define a denylist of actions you want to ignore. All actions in this list will be ignored, meaning the data from these actions will not be sent to the AppSignal servers and will not count towards your organization's billing plan.
This guide will show you how to configure your ignore action denylist in the language your application uses:
Note: This configuration is not available for Front-end JavaScript.
Ruby
To ignore actions in Ruby, add the following to your AppSignal configuration file. The ignore_actions
value is an Array of Strings.
The below example is for a Rails application.
If you use Sinatra or any other framework, use the HTTP method and path you used to specify your route, for example:
Elixir
To ignore actions in Elixir, add the following to your AppSignal configuration file. The ignore_actions
value is a List of Strings.
Node.js
To ignore actions in Node.js, add the following to your AppSignal configuration file. The ignoreActions
value is an Array of Strings.
Action names are used to group errors and performance issues. Their names are usually a controller/endpoint or background job. You can see a list of these in the "Action name" column of the Issue list under Performance in the sidebar. To ignore a specific action, copy the name as it appears in the UI and add it to the ignoreActions
option.
Python
To ignore actions in Python, add the following to your AppSignal configuration file. The ignore_actions
value is a list of strings.
Action names are used to group errors and performance issues. Their names are usually a controller/endpoint or background job. You can see a list of these in the "Action name" column of the Issue list under Performance in the sidebar. To ignore a specific action, copy the name as it appears in the UI and add it to the ignore_actions
option.