Incident triage is time-sensitive because site reliability engineers (SREs) and support engineers often need to collect evidence, assess user impact, and create follow-up work across separate tools. With Amazon Quick and New Relic, you can coordinate those investigation and handoff steps in a single conversational workflow.
This post shows engineering teams how to apply that principle to one of the most time-sensitive workflows in engineering: incident triage. You will build a custom incident triage assistant agent using Amazon Quick that orchestrates a response with the New Relic Model Context Protocol (MCP) Server and Asana through native integrations. From a single prompt, the Amazon Quick agent investigates the incident, assembles a root cause analysis (RCA) brief with evidence links, and creates a tracked Asana task ready for handoff.
For engineering leaders, reducing mean time to resolution (MTTR) is one way to drive better business impact. In internal testing using New Relic’s own applications, the agent reduced the evidence-gathering phase of incident triage. This led to faster resolution, lower risk of knowledge loss between engineering shifts, and a consistent investigation standard across the entire on-call rotation.
The incident triage assistant pattern in this post is one application of a broader capability in Amazon Quick: connecting enterprise tools to AI agents through native integrations.
With Amazon Quick chat agents, you can explore data and take actions through open-ended conversations backed by connected action connectors, pre-built integrations that link Amazon Quick to external services. New Relic is a built-in connector in Amazon Quick, providing access to its AI reasoning tools for incident response and performance analysis. Asana is another Amazon Quick built-in connector that supports task creation. The agent orchestrates both, producing an RCA brief and an Asana task from a single prompt. There are five New Relic reasoning tools the agent uses.

These tools do the investigative work, and the agent decides which ones to call based on your prompt:
The following image shows the end-to-end workflow from prompt to Asana task.

Figure 1: Incident triage workflow using Amazon Quick, New Relic MCP Server, and Asana.
The following implementation section walks through the full setup with screenshots. The following prompt is what an on-call engineer sends to start the investigation. Amazon Quick calls all five New Relic tools in one response, assembles the RCA brief, and then creates the Asana task:
“Checkout is slow and we are seeing server errors on checkout-service in production. Check the last 24 hours. Generate RCA brief.”
Before building the incident triage assistant, make sure that you have the required Amazon Quick, New Relic, and Asana access in place, including the permissions needed to create integrations, authenticate connectors, and configure task handoff.
In this section, you will set up the New Relic and Asana integrations, create the incident triage assistant in Amazon Quick, and test the end-to-end workflow from investigation to RCA brief to Asana task creation.
New Relic is available as a built-in connector in the Amazon Quick Integrations console. Navigate to Integrations and choose the Actions tab. Locate the New Relic tile (Figure 2) and choose the plus (+) icon to begin setup.

Figure 2: New Relic tile in the Amazon Quick Integrations console.
In the Create integration dialog (Figure 3), enter a name for the New Relic Integration and an optional description. Keep the connection type as Public network. The authentication method shows No additional credentials are needed at this stage. You authenticate with your New Relic account in a later step. Choose Create and continue, then choose Done.

Figure 3: Creating the New Relic MCP Server integration in Amazon Quick.
The integration now appears in the Existing actions panel with a status of Available (Figure 4). Choose the integration name to open its detail page.

Figure 4: New Relic and Asana integrations listed as Available in the Amazon Quick Integrations console.
The detail page shows the available New Relic actions and the connection details including the Base URL, Authorization URL, and Token URL (Figure 5). Choose Sign in and authenticate with your New Relic account credentials to activate the connection.

Figure 5: New Relic MCP Server integration detail page showing available actions. Choose Sign in to authenticate with your New Relic account.
The Asana connector uses OAuth 2.0. Before configuring it in Amazon Quick, create an OAuth application in the Asana developer console to obtain your Client ID and Client Secret. Then navigate to Integrations → Actions in Amazon Quick and select Asana. Enter the following values:
For full setup instructions, see Asana integration in the Amazon Quick User Guide.
The integration now appears in the Existing actions panel with a status of Available.

Figure 6: New Relic and Asana integrations listed as Available in the Amazon Quick Integrations console.
Navigate to Chat agents and choose Create chat agent. Give the agent a name and purpose, then replace the generated instructions with the following. For full setup steps, see Custom chat agents in the Amazon Quick User Guide.
In the Actions section of the agent builder, choose Link existing integration and add both the New Relic integration and the Asana integration you created in Steps 1 and 2. After linking, the available actions from each integration are accessible to the agent.
Replace the generated agent instructions with the following:
You are the Incident triage assistant.
Primary job
Help on-call engineers triage incidents using New Relic reasoning
tools. When the investigation is complete, create an Asana task
with the RCA brief.
How to respond
Keep responses concise and operational.
Do not guess. Use tool outputs as evidence.
If inputs are missing, ask for: service or entity name,
environment, and time window.
Default RCA brief format:
Summary (1-2 lines)
Blast radius
Likely trigger
Key evidence (bullets with links)
Recommended next actions (3 bullets)
Tool routing: New Relic investigation
alert fired, key drivers, signals changed -> generate_alert_insights_report
blast radius, customer impact, users affected -> generate_user_impact_report
logs, error signature, exceptions, anomalies -> analyze_entity_logs
slow requests, latency, transactions -> analyze_transactions
segmentation by region, version, endpoint -> natural_language_to_nrql_query
Tool routing: output
After generating the RCA brief -> create an Asana task.
Task fields: Name = incident title, Notes = full RCA brief with
evidence links, Due date = today, Tags = [sre-triage, incident].
Confirm the Asana project name with the user if not already known.
Output rules
If a tool call fails (permissions, timeout, missing entity),
state what failed and what input you need next.
Do not include PII, customer identifiers, user IDs, email addresses, IP addresses, session tokens, raw credentials, internal hostnames, infrastructure topology details, database connection strings, or environment variables in the RCA brief or Asana task notes.
Open the Incident triage assistant from Amazon Quick and send the following prompt. The agent calls New Relic reasoning tools, assembles the RCA brief, and asks you to confirm before creating the Asana task.
“Checkout is slow and we are seeing server errors on checkout-service in production. Check the last 24 hours. Generate RCA brief.”
The following image shows the agent calling New Relic reasoning tools in sequence before assembling the RCA brief.

Figure 7: The Incident triage agent calling New Relic reasoning tools from a single prompt.
The following image shows the full RCA brief, including summary, blast radius, likely trigger, key evidence with links back to New Relic, and three recommended next actions.

Figure 8: RCA brief generated by the Incident triage agent for the checkout-service incident.
When the agent asks to confirm the Asana project, reply: “Yes, create an Asana task in project SRE Incident Triage with this RCA brief.”

Figure 9: Asana task created by the Incident triage agent in the SRE Incident Triage project.
Before sharing the agent with your on-call rotation, address the following:
If you built this solution as a prototype, remove the following resources to avoid ongoing charges:
In this post, we showed you how to build an agentic incident triage agent using Amazon Quick that connects to the New Relic MCP Server and Asana through native integrations. From a single prompt, the agent calls five New Relic reasoning tools, assembles a root cause analysis brief with evidence links, and creates a tracked Asana task ready for handoff.
The agent removes the manual coordination between your observability system and your tracking system. Every investigation produces a consistent RCA format, regardless of who is on call, making shift handoffs faster and post-mortems more straightforward to run.
To get started, follow the New Relic integration for Amazon Quick article, and the Amazon Quick User Guide. We encourage you to explore the solution and adapt it for your environment.
Manuel Rioux est fièrement propulsé par WordPress