Skip to content

Commit e8a6c70

Browse files
Incorporated feedback
* Updated the title for the API doc * Removed the "Dashboard Analysis" and "Create Synthetic Monitoring" use cases and replaced it with "What happened previously" * Added a callout in the API doc, calling out the required permission and things to keep in mind.
1 parent c6dff9c commit e8a6c70

File tree

2 files changed

+13
-26
lines changed

2 files changed

+13
-26
lines changed

src/content/docs/agentic-ai/knowledge-integration/overview.mdx

Lines changed: 6 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ By setting up the New Relic AI knowledge connector, you can expect tangible outc
1919

2020
## Use cases and value
2121

22-
The following examples show how the knowledge connector integration helps the New Relic AI tools tackle challenges like fragmented documentation, slow incident response, and missing business context by surfacing relevant information.
22+
The following examples show how the knowledge connector integration helps tackle challenges like fragmented documentation and slow incident response by surfacing relevant information.
2323

2424
<CollapserGroup>
2525
<Collapser id="retro-docsearch-tool" title="Retro DocSearch">
@@ -33,27 +33,14 @@ The knowledge connector integrates all of these disparate sources, transforming
3333
* Identify the names of the experts or teams who solved it before.
3434

3535
</Collapser>
36-
<Collapser id="dashboard-analysis-tool" title="Dashboard Analysis">
36+
<Collapser id="what-happened-previously" title="What happened previously">
3737

38-
While the Dashboard Analysis tool provides key insights, its analysis is limited to the data received by the dashboard. It lacks crucial business context, making it difficult to understand the true impact of an issue.
38+
When an IT issue reoccurs, you'll often have to spend valuable time trying to figure out if it has happened before. Your historical context is often scattered across separate retrospective or postmortem documents, which can make it difficult to quickly find the information you need to resolve a recurring incident.
3939

40-
The knowledge connector integration grounds the Dashboard Analysis tool in your company's unique knowledge, acting as a bridge between raw telemetry and your internal documentation. This allows the tool to:
40+
By leveraging RAG, the New Relic AI platform stores information from your existing retrospective or postmortem documents for future reference. This helps you save valuable time during an incident. The What happened previously widget, with RAG implementation, allows you to:
4141

42-
* Explain the business impact using indexed documents that define key business metrics.
43-
* Curate suggestions based on internal runbooks to provide context-specific actionable steps.
44-
* Explain historical context by referencing an indexed Jira ticket or internal document.
45-
46-
</Collapser>
47-
48-
<Collapser id="synthetic-monitor-creation" title="Create Synthetic Monitoring">
49-
50-
This tool generates a basic synthetic monitor creation script, but it lacks an understanding of your organization's unique standards and proprietary information. This creates manual work to ensure compliance and inject authentication tokens.
51-
52-
The knowledge connector integration elevates the tool by giving it access to your company's internal documents. This allows the tool to:
53-
54-
* Automate standardization by applying your company’s rules to the generated script.
55-
* Inject specific non-public information from an indexed runbook or wiki into the monitor's configuration.
56-
* Automatically link the monitor to the relevant runbooks so troubleshooting context is attached to the alert.
42+
* Quickly find relevant information and learn from previous incidents.
43+
* Get a summary of similar past issues, along with links to the retrospective documents for detailed analysis.
5744

5845
</Collapser>
5946
</CollapserGroup>

src/content/docs/apis/nerdgraph/examples/nerdgraph-rag.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "NerdGraph tutorial: Configure RAG tools and documents"
2+
title: "NerdGraph tutorial: Set up RAG integration"
33
metaDescription: Enhance New Relic AI with RAG (Retrieval Augmented Generation)
44
redirects:
55
- /docs/agentic-ai/knowledge-integration/apis-and-communication-protocol
@@ -18,6 +18,12 @@ After adding your documents, you will create a relationship to associate them wi
1818

1919
To learn more about the knowledge connector, refer to [New Relic AI Knowledge connector](/docs/agentic-ai/knowledge-integration/overview).
2020

21+
<Callout variant="important">
22+
Before performing the following steps:
23+
* Ensure that you have "Org Product Admin" permissions.
24+
* All indexed documents are visible to all users within your organization. Make sure the documents you index comply with your internal policies, and do not upload sensitive or private data.
25+
</Callout>
26+
2127
To start indexing your content and benefit from the knowledge connector with New Relic AI, follow these mentioned steps:
2228

2329
## Create your RAG tool [#create-your-rag-tool]
@@ -42,8 +48,6 @@ Organization ID is required to perform mutations and queries in NerdGraph when s
4248
</Collapser>
4349
<Collapser id = "create-rag-tool" title = "Create a RAG tool">
4450

45-
Before performing this step, ensure you have "Org Product Admin" permissions.
46-
4751
A RAG tool acts as a specialized container for organizing related documents and resources in New Relic. A clear name and accurate description for your RAG tools helps the LLM select the right tool for each prompt, ensuring relevant and context-aware responses.
4852

4953
To create a new RAG tool in your New Relic account, run the following `entityManagementCreateRagTool` mutation:
@@ -125,10 +129,6 @@ You should save the `id` returned as you'll need it in later steps to link docum
125129

126130
<Collapser id = "upload-document" title = "Upload a document via the Blob API">
127131

128-
<Callout variant="important">
129-
All indexed documents are visible to all users within your organization. Make sure the documents you index comply with your internal policies, and do not upload sensitive or private data.
130-
</Callout>
131-
132132
### The Blob API and its purpose
133133
The Blob API is a New Relic service designed for uploading files, such as documentation and runbooks, to your account. NerdGraph is optimized for structured data queries and mutations and not for efficient transfer of files, so the Blob API is required for uploading documents.
134134

0 commit comments

Comments
 (0)