Skip to content

Commit 2bac681

Browse files
authored
Merge pull request #204712 from AbbyMSFT/workbook-toc
Editing titles in workbooks TOC
2 parents 8861331 + b15bd88 commit 2bac681

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

articles/azure-monitor/toc.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1348,17 +1348,17 @@ items:
13481348
items:
13491349
- name: Overview
13501350
href: visualize/workbooks-overview.md
1351-
- name: Getting started with workbooks
1351+
- name: Get started with workbooks
13521352
href: visualize/workbooks-getting-started.md
1353-
- name: Creating a workbook
1353+
- name: Create a new workbook
13541354
items:
1355-
- name: Using workbook templates
1355+
- name: Create a workbook with a template
13561356
href: visualize/workbooks-templates.md
1357-
- name: Creating a new workbook
1357+
- name: Create a new workbook
13581358
href: visualize/workbooks-create-workbook.md
1359-
- name: Working with data sources
1359+
- name: Data sources
13601360
href: visualize/workbooks-data-sources.md
1361-
- name: Working with visualizations
1361+
- name: Visualizations
13621362
items:
13631363
- name: Overview
13641364
href: visualize/workbooks-visualizations.md
@@ -1384,7 +1384,7 @@ items:
13841384
href: visualize/workbooks-renderers.md
13851385
- name: Link actions
13861386
href: visualize/workbooks-link-actions.md
1387-
- name: Working with parameters
1387+
- name: Parameters
13881388
items:
13891389
- name: Workbook parameters
13901390
href: visualize/workbooks-parameters.md
@@ -1408,7 +1408,7 @@ items:
14081408
href: visualize/workbooks-commonly-used-components.md
14091409
- name: Workbook result limits
14101410
href: visualize/workbooks-limits.md
1411-
- name: Integrating with other Azure services
1411+
- name: Integrate with other Azure services
14121412
items:
14131413
- name: Deploy with Azure Resource Manager
14141414
href: visualize/workbooks-automate.md

articles/azure-monitor/visualize/workbook-templates-move-region.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Azure Monitor Workbook Templates - Move Regions
2+
title: Move and Azure Workbook template to another region
33
description: How to move a workbook template to a different region
44
services: azure-monitor
55
author: gardnerjr

articles/azure-monitor/visualize/workbooks-create-workbook.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.date: 05/30/2022
99
ms.reviewer: gardnerjr
1010
---
1111

12-
# Creating an Azure Workbook
12+
# Create an Azure Workbook
1313
This article describes how to create a new workbook and how to add elements to your Azure Workbook.
1414

1515
This video walks you through creating workbooks.

articles/azure-monitor/visualize/workbooks-getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.date: 05/30/2022
88
ms.reviewer: gardnerjr
99
---
1010

11-
# Getting started with Azure Workbooks
11+
# Get started with Azure Workbooks
1212

1313
This article describes how to access Azure Workbooks and the common tasks used to work with Workbooks.
1414

articles/azure-monitor/visualize/workbooks-jsonpath.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.topic: conceptual
88
ms.date: 07/05/2022
99
---
1010

11-
# How to use JSONPath to transform JSON data in workbooks
11+
# Use JSONPath to transform JSON data in workbooks
1212

1313
Workbooks is able to query data from many sources. Some endpoints, such as [Azure Resource Manager](../../azure-resource-manager/management/overview.md) or custom endpoint, can return results in JSON. If the JSON data returned by the queried endpoint is not configured in a format that you desire, JSONPath can be used to transform the results.
1414

articles/azure-monitor/visualize/workbooks-text.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Textbox parameters provide a simple way to collect text input from workbook user
1515

1616
A common use of textboxes is as internal variables used by other workbook controls. This is done by using a query for default values, and making the input control invisible in read-mode. For example, a user may want a threshold to come from a formula (not a user) and then use the threshold in subsequent queries.
1717

18-
## Creating a text parameter
18+
## Create a text parameter
1919
1. Start with an empty workbook in edit mode.
2020
2. Choose _Add parameters_ from the links within the workbook.
2121
3. Select on the blue _Add Parameter_ button.
@@ -56,7 +56,7 @@ Text parameter supports following field style:
5656

5757
:::image type="content" source="./media/workbooks-text/kql-text.png" alt-text="Screenshot showing multiline text field.":::
5858

59-
## Referencing a text parameter
59+
## Reference a text parameter
6060
1. Add a query control to the workbook by selecting the blue `Add query` link and select an Application Insights resource.
6161
2. In the KQL box, add this snippet:
6262
```kusto
@@ -79,7 +79,7 @@ Text parameter supports following field style:
7979
> [!NOTE]
8080
> In the example above, `{SlowRequestThreshold}` represents an integer value. If you were querying for a string like `{ComputerName}` you would need to modify your Kusto query to add quotes `"{ComputerName}"` in order for the parameter field to an accept input without quotes.
8181
82-
## Setting default values using queries
82+
## Set the default values using queries
8383
1. Start with an empty workbook in edit mode.
8484
2. Choose _Add parameters_ from the links within the workbook.
8585
3. Select on the blue _Add Parameter_ button.
@@ -102,7 +102,7 @@ Text parameter supports following field style:
102102
> [!NOTE]
103103
> While this example queries Application Insights data, the approach can be used for any log based data source - Log Analytics, Azure Resource Graph, etc.
104104
105-
## Adding validations
105+
## Add validations
106106
107107
For standard and password text parameters, user can add validation rules that are applied to the text field. Add a valid regex with error message. If message is set, it's shown as error when field is invalid.
108108

0 commit comments

Comments
 (0)