From aa9e4b5a5a158a03c391cb72c905a4e699b8866c Mon Sep 17 00:00:00 2001 From: KOTungseth Date: Thu, 12 Nov 2020 12:53:11 -0600 Subject: [PATCH 1/6] Fixes lGo to URL links --- src/core/public/doc_links/doc_links_service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/public/doc_links/doc_links_service.ts b/src/core/public/doc_links/doc_links_service.ts index f4e8726a7ecb7..04a5c8e5b9eec 100644 --- a/src/core/public/doc_links/doc_links_service.ts +++ b/src/core/public/doc_links/doc_links_service.ts @@ -39,8 +39,8 @@ export class DocLinksService { dashboard: { drilldowns: `${ELASTIC_WEBSITE_URL}guide/en/kibana/${DOC_LINK_VERSION}/drilldowns.html`, drilldownsTriggerPicker: `${ELASTIC_WEBSITE_URL}guide/en/kibana/${DOC_LINK_VERSION}/drilldowns.html#url-drilldown`, - urlDrilldownTemplateSyntax: `${ELASTIC_WEBSITE_URL}guide/en/kibana/${DOC_LINK_VERSION}/url_templating-language.html`, - urlDrilldownVariables: `${ELASTIC_WEBSITE_URL}guide/en/kibana/${DOC_LINK_VERSION}/url_templating-language.html#variables`, + urlDrilldownTemplateSyntax: `${ELASTIC_WEBSITE_URL}guide/en/kibana/${DOC_LINK_VERSION}/url_templating.html`, + urlDrilldownVariables: `${ELASTIC_WEBSITE_URL}guide/en/kibana/${DOC_LINK_VERSION}/url_templating.html#variables`, }, filebeat: { base: `${ELASTIC_WEBSITE_URL}guide/en/beats/filebeat/${DOC_LINK_VERSION}`, From 3d2d4aa2f2415f6e183ddc4e26f6136095246922 Mon Sep 17 00:00:00 2001 From: KOTungseth Date: Thu, 12 Nov 2020 13:40:13 -0600 Subject: [PATCH 2/6] Fixes links pt 2 --- docs/user/dashboard/url-drilldown.asciidoc | 2 +- src/core/public/doc_links/doc_links_service.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/user/dashboard/url-drilldown.asciidoc b/docs/user/dashboard/url-drilldown.asciidoc index 044ae7c555bc9..a6f13c05c258b 100644 --- a/docs/user/dashboard/url-drilldown.asciidoc +++ b/docs/user/dashboard/url-drilldown.asciidoc @@ -1,4 +1,4 @@ -[[url_templating]] +[[url_templating-language]] === URL templating beta[] diff --git a/src/core/public/doc_links/doc_links_service.ts b/src/core/public/doc_links/doc_links_service.ts index 04a5c8e5b9eec..f4e8726a7ecb7 100644 --- a/src/core/public/doc_links/doc_links_service.ts +++ b/src/core/public/doc_links/doc_links_service.ts @@ -39,8 +39,8 @@ export class DocLinksService { dashboard: { drilldowns: `${ELASTIC_WEBSITE_URL}guide/en/kibana/${DOC_LINK_VERSION}/drilldowns.html`, drilldownsTriggerPicker: `${ELASTIC_WEBSITE_URL}guide/en/kibana/${DOC_LINK_VERSION}/drilldowns.html#url-drilldown`, - urlDrilldownTemplateSyntax: `${ELASTIC_WEBSITE_URL}guide/en/kibana/${DOC_LINK_VERSION}/url_templating.html`, - urlDrilldownVariables: `${ELASTIC_WEBSITE_URL}guide/en/kibana/${DOC_LINK_VERSION}/url_templating.html#variables`, + urlDrilldownTemplateSyntax: `${ELASTIC_WEBSITE_URL}guide/en/kibana/${DOC_LINK_VERSION}/url_templating-language.html`, + urlDrilldownVariables: `${ELASTIC_WEBSITE_URL}guide/en/kibana/${DOC_LINK_VERSION}/url_templating-language.html#variables`, }, filebeat: { base: `${ELASTIC_WEBSITE_URL}guide/en/beats/filebeat/${DOC_LINK_VERSION}`, From 5acf334dd7d26abd434ee240c8c4535116ae9f9b Mon Sep 17 00:00:00 2001 From: KOTungseth Date: Tue, 17 Nov 2020 10:53:28 -0600 Subject: [PATCH 3/6] Added redirects --- docs/redirects.asciidoc | 17 +++++++++++++++++ docs/user/dashboard/drilldowns.asciidoc | 2 +- docs/user/dashboard/url-drilldown.asciidoc | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/docs/redirects.asciidoc b/docs/redirects.asciidoc index 121639f865e15..0e5d8c36c0c62 100644 --- a/docs/redirects.asciidoc +++ b/docs/redirects.asciidoc @@ -164,3 +164,20 @@ This content has moved. See This content has moved. See {ref}/index-mgmt.html[Index management]. +[role="exclude",id="trigger-picker"] +== Picking a trigger for a URL drilldown + +This content has moved. Refer to <>. + +[role="exclude",id="templating"] +== URL templating language + +This content has moved. Refer to <>. + +[role="exclude",id="variables"] +== URL template variables + +This content has moved. Refer to <>. + + + diff --git a/docs/user/dashboard/drilldowns.asciidoc b/docs/user/dashboard/drilldowns.asciidoc index ca788020d9286..696e4db3d2f6c 100644 --- a/docs/user/dashboard/drilldowns.asciidoc +++ b/docs/user/dashboard/drilldowns.asciidoc @@ -42,7 +42,7 @@ For example, if you have a dashboard that shows data from a Github repository, y that opens Github from the dashboard. Some panels support multiple interactions, also known as triggers. -The <> you use to create a <> depends on the trigger you choose. URL drilldowns support these types of triggers: +The <> you use to create a <> depends on the trigger you choose. URL drilldowns support these types of triggers: * *Single click* — A single data point in the visualization. diff --git a/docs/user/dashboard/url-drilldown.asciidoc b/docs/user/dashboard/url-drilldown.asciidoc index a6f13c05c258b..8f6d4c5f1913f 100644 --- a/docs/user/dashboard/url-drilldown.asciidoc +++ b/docs/user/dashboard/url-drilldown.asciidoc @@ -51,7 +51,7 @@ Example: [float] -[[variables]] +[[url-template-variables]] ==== URL template variables The URL drilldown template has three sources for variables: From 2a448cfb4a4d2d3489e17a9f0f0c23b5ad2d1de9 Mon Sep 17 00:00:00 2001 From: KOTungseth Date: Wed, 18 Nov 2020 11:22:06 -0600 Subject: [PATCH 4/6] Added Lens and reformatted redirects --- docs/redirects.asciidoc | 40 +++++++++++++++---------- docs/user/dashboard/dashboard.asciidoc | 2 +- docs/user/dashboard/drilldowns.asciidoc | 4 +-- 3 files changed, 28 insertions(+), 18 deletions(-) diff --git a/docs/redirects.asciidoc b/docs/redirects.asciidoc index e86f59b460cb5..b90d00ce1b9cd 100644 --- a/docs/redirects.asciidoc +++ b/docs/redirects.asciidoc @@ -164,21 +164,6 @@ This content has moved. See This content has moved. See {ref}/index-mgmt.html[Index management]. -[role="exclude",id="trigger-picker"] -== Picking a trigger for a URL drilldown - -This content has moved. Refer to <>. - -[role="exclude",id="templating"] -== URL templating language - -This content has moved. Refer to <>. - -[role="exclude",id="variables"] -== URL template variables - -This content has moved. Refer to <>. - [role="exclude",id="field-filter"] == Filter by field @@ -201,3 +186,28 @@ This content has moved. See <>. This content has moved. See <>. +[role="exclude",id="lens"] +== Lens + +This page was deleted. Refer to <>. + +[role="exclude",id="url-drilldown"] +== URL drilldown + +[float] +[[trigger-picker]] +=== Picking a trigger for a URL drilldown + +This page has moved. Refer to <>. + +[float] +[[templating]] +=== URL templating + +This page has moved. Refer to <>. + +[float] +[[variables]] +=== Variables + +This page has moved. Refer to <>. diff --git a/docs/user/dashboard/dashboard.asciidoc b/docs/user/dashboard/dashboard.asciidoc index 7f0ac3aadd8f6..8b21f2b8d14e9 100644 --- a/docs/user/dashboard/dashboard.asciidoc +++ b/docs/user/dashboard/dashboard.asciidoc @@ -185,7 +185,7 @@ image:images/Dashboard_add_new_visualization.png[Example add new visualization t {kib} provides you with several editors that help you create panels. [float] -[[lens]] +[[create-panels-with-lens]] === Create panels with Lens *Lens* is the simplest and fastest way to create powerful visualizations of your data. To use *Lens*, you drag and drop as many data fields diff --git a/docs/user/dashboard/drilldowns.asciidoc b/docs/user/dashboard/drilldowns.asciidoc index 696e4db3d2f6c..d41f4dcd45a6a 100644 --- a/docs/user/dashboard/drilldowns.asciidoc +++ b/docs/user/dashboard/drilldowns.asciidoc @@ -21,7 +21,7 @@ refer https://www.elastic.co/subscriptions[the subscription page]. ============================================== [float] -[[dashboard-drilldown]] +[[dashboard-drilldowns]] ==== Dashboard drilldowns Dashboard drilldowns enable you to open a dashboard from another dashboard, @@ -33,7 +33,7 @@ you can create a drilldown that navigates from the overall status dashboard to a that shows a single data center or server. [float] -[[url-drilldown]] +[[url-drilldowns]] ==== URL drilldowns beta[] URL drilldowns enable you to navigate from a dashboard to internal or external URLs. From 73859af779c1d7aafa2667099b97ec4b4d4ae362 Mon Sep 17 00:00:00 2001 From: KOTungseth Date: Wed, 18 Nov 2020 13:19:33 -0600 Subject: [PATCH 5/6] Removed lens and fixed broken links --- docs/redirects.asciidoc | 5 ----- docs/user/dashboard/dashboard.asciidoc | 2 +- docs/user/whats-new.asciidoc | 4 ++-- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/docs/redirects.asciidoc b/docs/redirects.asciidoc index b90d00ce1b9cd..a51a69982daf0 100644 --- a/docs/redirects.asciidoc +++ b/docs/redirects.asciidoc @@ -186,11 +186,6 @@ This content has moved. See <>. This content has moved. See <>. -[role="exclude",id="lens"] -== Lens - -This page was deleted. Refer to <>. - [role="exclude",id="url-drilldown"] == URL drilldown diff --git a/docs/user/dashboard/dashboard.asciidoc b/docs/user/dashboard/dashboard.asciidoc index 8b21f2b8d14e9..7f0ac3aadd8f6 100644 --- a/docs/user/dashboard/dashboard.asciidoc +++ b/docs/user/dashboard/dashboard.asciidoc @@ -185,7 +185,7 @@ image:images/Dashboard_add_new_visualization.png[Example add new visualization t {kib} provides you with several editors that help you create panels. [float] -[[create-panels-with-lens]] +[[lens]] === Create panels with Lens *Lens* is the simplest and fastest way to create powerful visualizations of your data. To use *Lens*, you drag and drop as many data fields diff --git a/docs/user/whats-new.asciidoc b/docs/user/whats-new.asciidoc index 959e48e643baf..1044f7c3562e9 100644 --- a/docs/user/whats-new.asciidoc +++ b/docs/user/whats-new.asciidoc @@ -85,7 +85,7 @@ custom navigation paths between dashboards, carrying over the filter and time context. Now you can also create a navigation path from a dashboard to an internal or external URL. This functionality is available with a https://www.elastic.co/subscriptions[Gold subscription] or higher. -For more information, refer to the {kibana-ref}/drilldowns.html#url-drilldown[URL drilldown documentation]. +For more information, refer to the {kibana-ref}/drilldowns.html#url-drilldowns[URL drilldown documentation]. [role="screenshot"] image::user/images/drilldown-to-url.png[Drilldown to Url on dashboard panel] @@ -95,7 +95,7 @@ image::user/images/drilldown-to-url.png[Drilldown to Url on dashboard panel] === New ways to act on geospatial data Maps and dashboards now work better together. -First, you can use maps with {kibana-ref}/drilldowns.html#dashboard-drilldown[dashboard drilldowns]. +First, you can use maps with {kibana-ref}/drilldowns.html#dashboard-drilldowns[dashboard drilldowns]. Second, when authoring a dashboard, you can create a map, save the map, and then return to the dashboard in your workflow. From 27f2498111fa4fc1df19c0a7b4f8f90a12c6bb61 Mon Sep 17 00:00:00 2001 From: KOTungseth Date: Thu, 19 Nov 2020 12:38:03 -0600 Subject: [PATCH 6/6] Fixes to URL drilldowns link --- docs/redirects.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/redirects.asciidoc b/docs/redirects.asciidoc index a51a69982daf0..26955846e3426 100644 --- a/docs/redirects.asciidoc +++ b/docs/redirects.asciidoc @@ -193,7 +193,7 @@ This content has moved. See <>. [[trigger-picker]] === Picking a trigger for a URL drilldown -This page has moved. Refer to <>. +This page has moved. Refer to <>. [float] [[templating]]