AppSignal
AppSignal is a real-time APM provider for Ruby, Rails, Node.js, and Elixir & Phoenix. It provides insights into errors and performance issues, plus host monitoring and an easy-to-use custom metrics platform.
In order to integrate AppSignal with Relyance AI you will need the App ID and Personal API Token. You will also need to provide a Product name that your would associate with the integration analysis.
In AppSignal:
- Login to your AppSignal account.
- Click on the Application you wish monitor with Relyance and go to the dashboard.
- Copy the App ID from your web-browsers URL. It is found between 'sites/' and '/dashboard'. e.g.: https://appsignal.com/boutique/sites/ 93457f4b83abcdefhij00000 /dashboard
- Click on the user profile menu in the top right-hand corner and select Account settings.
- In the Account Personal settings scroll to the bottom and find the API section.
- Copy your personal API Token.


In the Relyance AI application:
- Login to your Relyance account.
- Navigate to the Settings (bottom-left corner).
- Select Integrations.
- Search and locate the AppSignal integration card and click on it.
- Click on the Add Connection button on the top right
- Provide a meaningful name for the integration and click on the Add button
- In the Overview section, select the integration features you wish to enable for the integration, review the Scope and Permission, and Endpoint details and click on Continue. For more details, see Integration Features In the Connection section, provide the appropriate values and click on Continue,


- This step applies only if the Data Inspection check box was enabled in Step 7. In the Data Inspection section, provide the appropriate values and click on Continue,
- Minimum Confidence Level: This property adjusts the sensitivity of the Data Inspection feature. Lower likelihoods (e.g., unlikely) offer more coverage but may produce false positives, while higher sensitivity (e.g., very likely) provides greater accuracy but less coverage.
- In the Authentication section, edit the JSON by adding App ID, Token, and Product name into the JSON in the respective quotes in the form.
- Review the configuration summary from the Completion section and click on Finish. Confirm the integration Status reflects Connected



If the connection reports Connected but returns nothing
These are the ways this integration comes back empty without reporting an error. Generated from the integration catalog, so it tracks what the connection actually asks for.
- A credential rotated at the vendor is not picked up here. Personal Token is stored when you save the connection, so regenerating the value at the vendor breaks the next scan until it is re-pasted here. Recording the expiry on the connection means Relyance warns you before it lapses.
- One entry can be empty while the others work. Account Details is a list, and each entry is authorised independently, so a missing grant on one account or subscription empties just that entry -- silently.
Authentication methods and fields
Pick one of these under Authentication Method on the connection wizard's Authentication step. This table is generated from the integration catalog, so it always matches what the form actually asks for.
| Method | Required | Optional |
|---|---|---|
| Custom | Personal Token (secret), Account Details |
— |
Manage this integration with Terraform
Connections for this integration can be managed as code with the Relyance Terraform provider. Non-secret fields go in auth.params; secret fields go in auth.secrets_wo, which is write-only — never stored in Terraform state. Rotate secrets by bumping auth.secrets_wo_version.
resource "relyance_integration_connection" "appsignal" {
vendor = "appsignal"
name = "<your connection name>"
auth = {
method = "access-token"
params = {
accounts = jsonencode([
{
api-key = ""
app-id = ""
product = ""
}
])
data_storage_location = "us"
}
# Secret fields are write-only: sent to Relyance, never stored in state.
secrets_wo = {
personal_token = var.appsignal_personal_token
}
secrets_wo_version = 1
}
scans = { "data-inspection" = { enabled = true } }
}