diff --git a/src/data/sidenav.json b/src/data/sidenav.json index b9659af12..e5c93d6bc 100644 --- a/src/data/sidenav.json +++ b/src/data/sidenav.json @@ -91,27 +91,27 @@ "children": [ { "displayName": "New Relic One CLI", - "url": "/reference/nr1-cli" + "url": "/explore-docs/nr1-cli" }, { "displayName": "New Relic CLI", - "url": "/reference/newrelic-cli" + "url": "/explore-docs/newrelic-cli" }, { "displayName": "Nerdpack file structure", - "url": "/reference/nerdpack-file-structure" + "url": "/explore-docs/nerdpack-file-structure" }, { "displayName": "Intro to New Relic One API components", - "url": "/reference/intro-to-sdk" + "url": "/explore-docs/intro-to-sdk" }, { "displayName": "Intro to Nerdstorage", - "url": "/reference/nerdstorage" + "url": "/explore-docs/nerdstorage" }, { "displayName": "Query and store data", - "url": "/reference/query-and-store-data" + "url": "/explore-docs/query-and-store-data" }, { "displayName": "Component library", diff --git a/src/markdown-pages/build-apps/add-query-mutate-data-NerdStorage.mdx b/src/markdown-pages/build-apps/add-query-mutate-data-NerdStorage.mdx index d88b01976..443a12264 100644 --- a/src/markdown-pages/build-apps/add-query-mutate-data-NerdStorage.mdx +++ b/src/markdown-pages/build-apps/add-query-mutate-data-NerdStorage.mdx @@ -12,7 +12,7 @@ NerdStorage is a document database accessible within New Relic One. It allows yo Using NerdStorage, you can create individual documents of up to 64kb in size, create different collections of documents, and store data by entity, account, or user level. -This guide explains how to add data and documents to NerdStorage. For an introduction to what NerdStorage is and how it works, see [Intro to NerdStorage](/reference/nerdstorage). +This guide explains how to add data and documents to NerdStorage. For an introduction to what NerdStorage is and how it works, see [Intro to NerdStorage](/explore-docs/nerdstorage). @@ -274,4 +274,4 @@ Now that you’ve successfully implemented NerdStorage into a New Relic One appl ## Related info -- [New Relic SDK documentation](/reference/intro-to-sdk) +- [New Relic SDK documentation](/explore-docs/intro-to-sdk) diff --git a/src/markdown-pages/build-apps/map-pageviews-by-region.mdx b/src/markdown-pages/build-apps/map-pageviews-by-region.mdx index 1a6ae082c..6ed0a8814 100644 --- a/src/markdown-pages/build-apps/map-pageviews-by-region.mdx +++ b/src/markdown-pages/build-apps/map-pageviews-by-region.mdx @@ -39,7 +39,7 @@ To add your data to a world map in the second half of the guide: The following are some terms used in this guide: * New Relic application: The finished product where data is rendered in New Relic One. This might look like a series of interactive charts or a map of the world. -* Nerdpack: New Relic's standard collection of JavaScript, JSON, CSS, and other files that control the functionality and look of your application. For more information, see [Nerdpack file structure](/reference/nerdpack-file-structure). +* Nerdpack: New Relic's standard collection of JavaScript, JSON, CSS, and other files that control the functionality and look of your application. For more information, see [Nerdpack file structure](/explore-docs/nerdpack-file-structure). * Launcher: The button on New Relic One that launches your application. * Nerdlets: New Relic React components used to build your application. The three default files are `index.js`, `nr1.json`, and `styles.scss`, but you can customize and add your own. @@ -90,7 +90,7 @@ cd pageviews-app && nr1 nerdpack:serve ## Review your app files and view your app locally 1. Navigate to your `pageviews-app` to see how it's structured. -It contains a launcher folder, where you can customize the description and icon that will be displayed on the app's launcher in New Relic One. It also contains `nerdlets`, which each contain three default files: `index.js`, `nr1.json`, and `styles.scss`. You'll edit some of these files as part of this guide. For more information, see [Nerdpack file structure](/reference/nerdpack-file-structure.mdx). +It contains a launcher folder, where you can customize the description and icon that will be displayed on the app's launcher in New Relic One. It also contains `nerdlets`, which each contain three default files: `index.js`, `nr1.json`, and `styles.scss`. You'll edit some of these files as part of this guide. For more information, see [Nerdpack file structure](/explore-docs/nerdpack-file-structure.mdx). 2. Now in your browser, open `https://one.newrelic.com/?nerdpacks=local` to see the `pageview-apps` Nerdpack that you served up. diff --git a/src/markdown-pages/explore-docs/intro-to-sdk.mdx b/src/markdown-pages/explore-docs/intro-to-sdk.mdx index a63bf56f4..48494d981 100644 --- a/src/markdown-pages/explore-docs/intro-to-sdk.mdx +++ b/src/markdown-pages/explore-docs/intro-to-sdk.mdx @@ -19,7 +19,7 @@ Here we give you an introduction to the types of API calls and components in the ## Components of the New Relic SDK -SDK components are located in the Node module package named `nr1`, which you get when you install [the NR1 CLI](/reference/nr1-cli). The `nr1` components can be divided into several categories: +SDK components are located in the Node module package named `nr1`, which you get when you install [the NR1 CLI](/explore-docs/nr1-cli). The `nr1` components can be divided into several categories: - UI components - Chart components @@ -77,7 +77,7 @@ The **Query components** category of the New Relic One SDK contains components f The main way to fetch New Relic data is with NerdGraph, our GraphQL endpoint. This can be queried using [`NerdGraphQuery`](../components/nerd-graph-query). To simplify use of NerdGraph queries, we provide some components with pre-defined queries. For more on using NerdGraph, see [Queries and mutations](../collect-data/get-started-nerdgraph-api-explorer). -We also provide storage for storing small data sets, such as configuration settings data, or user-specific data. For more on this, see [NerdStorage](/reference/nerdstorage). +We also provide storage for storing small data sets, such as configuration settings data, or user-specific data. For more on this, see [NerdStorage](/explore-docs/nerdstorage). ### Platform APIs diff --git a/src/markdown-pages/explore-docs/nerdpack-file-structure.mdx b/src/markdown-pages/explore-docs/nerdpack-file-structure.mdx index f5546f84f..d5f34d375 100644 --- a/src/markdown-pages/explore-docs/nerdpack-file-structure.mdx +++ b/src/markdown-pages/explore-docs/nerdpack-file-structure.mdx @@ -18,7 +18,7 @@ and (optionally) one or more **launcher** files. Here we explain: - How to link a launcher file to a Nerdlet - How to link your application with a monitored entity -For basic component definitions, see our [component reference](/reference/intro-to-sdk). +For basic component definitions, see our [component reference](/explore-docs/intro-to-sdk). diff --git a/src/markdown-pages/explore-docs/nr1-cli.mdx b/src/markdown-pages/explore-docs/nr1-cli.mdx index 796914768..9cc540e86 100644 --- a/src/markdown-pages/explore-docs/nr1-cli.mdx +++ b/src/markdown-pages/explore-docs/nr1-cli.mdx @@ -54,7 +54,7 @@ This table gives descriptions and context for some of the most important CLI com | Delete CLI config | `nr1 config:delete` | Removes the value of a specific configuration. | | Update | `nr1 update` | Update to newest version of the CLI. | | Profiles | `nr1 profiles` | Controls the profile you'll be running CLI commands as. You can have more than one profile, which is helpful for executing commands on multiple New Relic accounts. For more on this, see [the workshop](https://github.com/newrelic/nr1-workshop/blob/master/lab-cli/INSTRUCTIONS.md). | -| Create | `nr1 create` | Create a new component template (Nerdpack, Nerdlet, launcher, or catalog). The CLI will walk you through this process. For an explanation of the file structure, see [Nerdpack file structure](/reference/nerdpack-file-structure). | +| Create | `nr1 create` | Create a new component template (Nerdpack, Nerdlet, launcher, or catalog). The CLI will walk you through this process. For an explanation of the file structure, see [Nerdpack file structure](/explore-docs/nerdpack-file-structure). | | Clone | `nr1 nerdpack:clone` | Clone an [open source Nerdpack from our GitHub repository](/open-source/nerdpacks). | | Serve locally | `nr1 nerdpack:serve` | Serves your Nerdpack locally, which makes it visible at [one.newrelic.com/?nerdpacks=local](https://one.newrelic.com/?nerdpacks=local). For details, see [Local development](/client-side-sdk/index.html#cli/LocalDevelopment). | | Change associated accounts | `nr1 nerdpack:uuid` | Commands related to the Nerdpack's UUID (universal unique ID). This ID dictates the data a Nerdpack has access to, and who can subscribe to it. To deploy a Nerdpack you didn't make, you'll have to assign it a new UUID. For details, see [Access to data](/build-tools/new-relic-one-applications/guide-to-authentication--data-access--and-permissions#Appaccesstodata) and [the workshop](https://github.com/newrelic/nr1-workshop/blob/master/lab-cli/INSTRUCTIONS.md). | diff --git a/src/markdown-pages/explore-docs/query-and-store-data.mdx b/src/markdown-pages/explore-docs/query-and-store-data.mdx index 9abf03793..04dfc315e 100644 --- a/src/markdown-pages/explore-docs/query-and-store-data.mdx +++ b/src/markdown-pages/explore-docs/query-and-store-data.mdx @@ -13,7 +13,7 @@ redirects: -To help you build a [New Relic One application](/build-apps/build-hello-world-app), we provide you with the [New Relic One SDK](/reference/intro-to-sdk). Here you can learn how to use the SDK query components, which allow you to make queries and mutations via [NerdGraph](/collect-data/get-started-nerdgraph-api-explorer), our GraphQL endpoint. +To help you build a [New Relic One application](/build-apps/build-hello-world-app), we provide you with the [New Relic One SDK](/explore-docs/intro-to-sdk). Here you can learn how to use the SDK query components, which allow you to make queries and mutations via [NerdGraph](/collect-data/get-started-nerdgraph-api-explorer), our GraphQL endpoint.