diff --git a/gatsby-node.js b/gatsby-node.js index f759f042b..cf7e593c1 100644 --- a/gatsby-node.js +++ b/gatsby-node.js @@ -48,6 +48,10 @@ exports.createPages = async ({ actions, graphql, reporter }) => { component: path.resolve(`src/templates/${frontmatter.template}.js`), context: { fileRelativePath: getFileRelativePath(node.fileAbsolutePath), + guidesFilter: + frontmatter.template === 'OverviewTemplate' + ? `${frontmatter.path}/*` + : undefined, }, }); }); diff --git a/src/data/sidenav.json b/src/data/sidenav.json index 2e8e1a558..873504cb0 100644 --- a/src/data/sidenav.json +++ b/src/data/sidenav.json @@ -1,6 +1,7 @@ [ { "displayName": "Collect data", + "url": "/collect-data", "children": [ { "displayName": "Collect data from any source", @@ -26,6 +27,7 @@ }, { "displayName": "Automate workflows", + "url": "/automate-workflows", "children": [ { "displayName": "Orchestrate observability workflows", @@ -77,6 +79,7 @@ }, { "displayName": "Explore docs", + "url": "/explore-docs", "children": [ { "displayName": "New Relic One CLI", diff --git a/src/markdown-pages/automate-workflows/index.mdx b/src/markdown-pages/automate-workflows/index.mdx new file mode 100644 index 000000000..1fc470435 --- /dev/null +++ b/src/markdown-pages/automate-workflows/index.mdx @@ -0,0 +1,14 @@ +--- +path: '/automate-workflows' +title: 'Automate Workflows' +template: 'OverviewTemplate' +description: '' +--- + + + +This guide steps you through adding access to the New Relic time picker to a sample transaction overview application. You also add the selected time to the queries used in the application’s chart components. Start by setting up the sample application and running it locally. Then add the time picker, and some time picker features. + + diff --git a/src/markdown-pages/build-apps/index.mdx b/src/markdown-pages/build-apps/index.mdx index 2318bbb67..4a5232b8a 100644 --- a/src/markdown-pages/build-apps/index.mdx +++ b/src/markdown-pages/build-apps/index.mdx @@ -1,11 +1,12 @@ --- path: '/build-apps' -title: 'Build Custom New Relic Apps' +title: 'Build Apps' template: 'OverviewTemplate' -description: 'Learn how to build custom New Relic applications' +description: '' --- + This guide steps you through adding access to the New Relic time picker to a sample transaction overview application. You also add the selected time to the queries used in the application’s chart components. Start by setting up the sample application and running it locally. Then add the time picker, and some time picker features.