Skip to content

Commit 205965e

Browse files
committed
non-blocking feedback
1 parent 6239f7e commit 205965e

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

articles/azure-monitor/platform/workbooks-automate.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This can be useful in scenarios like:
2222

2323
The workbook will be created in the desired sub/resource-group and with the content specified in the Resource Manager templates.
2424

25-
## Creating an Azure Resource Manager template that deploys a workbook
25+
## Azure Resource Manager template for deploying workbooks
2626
1. Open a workbook that you want to deploy programmatically.
2727
2. Switch the workbook to edit mode by clicking on the _Edit_ toolbar item.
2828
3. Open the _Advanced Editor_ using the _</>_ button on the toolbar.
@@ -93,7 +93,7 @@ This template shows how to deploy a simple workbook that displays a 'Hello World
9393
}
9494
```
9595

96-
### Template Parameters
96+
### Template parameters
9797

9898
| Parameter | Explanation |
9999
| :------------- |:-------------|
@@ -105,7 +105,7 @@ This template shows how to deploy a simple workbook that displays a 'Hello World
105105
| `location` | The Azure location where the workbook will be created. Use _[resourceGroup().location]_ to create it in the same location as the resource group |
106106
| `serializedData` | Contains the content or payload to be used in the workbook. Use the Resource Manager template from the workbooks UI to get the value |
107107

108-
### Workbook Types
108+
### Workbook types
109109
Workbook types specify which workbook gallery type the new workbook instance will show up under. Options include:
110110

111111
| Type | Gallery location |

articles/azure-monitor/platform/workbooks-data-sources.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,37 +47,37 @@ To make a query control use this data source, use the Query type drop-down to ch
4747

4848
![Screenshot of Azure Resource Graph KQL query](./media/workbooks-overview/azure-resource-graph.png)
4949

50-
## Alerts (Preview)
50+
## Alerts (preview)
5151

5252
Workbooks allow users to visualize the active alerts related to their resources. This feature allows the creation of reports that bring together notification data (alert) and diagnostic information (metrics, logs) into one report. This information can also be joined together to create rich reports that combine insights across these data sources.
5353

5454
To make a query control use this data source, use the Query type drop-down to choose Alerts and select the subscriptions, resource groups or resources to target. Use the alert filter drop downs to select an interesting subset of alerts for your analytic needs.
5555

5656
![Screenshot of alerts query](./media/workbooks-overview/alerts.png)
5757

58-
## Workload Health (Preview)
58+
## Workload health (preview)
5959

6060
Azure Monitor has functionality that proactively monitors the availability and performance of Windows or Linux guest operating systems. Azure Monitor models key components and their relationships, criteria for how to measure the health of those components, and which components alert you when an unhealthy condition is detected. Workbooks allow users to use this information to create rich interactive reports.
6161

6262
To make a query control use this data source, use the **Query type** drop-down to choose Workload Health and select subscription, resource group or VM resources to target. Use the health filter drop downs to select an interesting subset of health incidents for your analytic needs.
6363

6464
![Screenshot of alerts query](./media/workbooks-overview/workload-health.png)
6565

66-
## Azure Resource Health
66+
## Azure resource health
6767

6868
Workbooks support getting Azure resource health and combining it with other data sources to create rich, interactive health reports
6969

7070
To make a query control use this data source, use the **Query type** drop-down to choose Azure health and select the resources to target. Use the health filter drop downs to select an interesting subset of resource issues for your analytic needs.
7171

7272
![Screenshot of alerts query](./media/workbooks-overview/resource-health.png)
7373

74-
## Azure Data Explorer (Preview)
74+
## Azure Data Explorer (preview)
7575

7676
Workbooks now have support for querying from [Azure Data Explorer](https://docs.microsoft.com/azure/data-explorer/) clusters with the powerful [Kusto](https://docs.microsoft.com/azure/kusto/query/index) query language.
7777

7878
![Screenshot of Kusto query window](./media/workbooks-overview/data-explorer.png)
7979

80-
## Next Steps
80+
## Next steps
8181

8282
* [Get started](workbooks-visualizations.md) learning more about workbooks many rich visualizations options.
8383
* [Control](workbooks-access-control.md) and share access to your workbook resources.

articles/azure-monitor/platform/workbooks-dropdowns.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ If your query result/json contains a "group" field, the dropdown will display gr
105105
![Image showing a drop-down referenced in KQL](./media/workbook-dropdowns/dropdown-reference.png)
106106
107107
108-
## Parameter Value, Label, Selection and Group
108+
## Parameter value, label, selection and group
109109
The query used in the dynamic drop-down parameter above just returns a list of values that are rendered faithfully in the drop-down. But what if you wanted a different display name, or one of these to be selected? Drop down parameters allow this via the value, label, selection and group columns.
110110
111111
The sample below shows how to get a list of Application Insights dependencies whose display names are styled with an emoji, has the first one selected, and is grouped by operation names.
@@ -128,7 +128,7 @@ dependencies
128128
| `{DependencyName:label}` | The selected label | 🌐 GET fabrikamaccount |
129129
| `{DependencyName:value}` | The selected value | GET fabrikamaccount |
130130

131-
## Multiple Selection
131+
## Multiple selection
132132
The examples so far explicitly set the parameter to select only one value in the drop-down. Drop down parameters also support `multiple selection` - enabling this is as simple as checking the `Allow multiple selection` option.
133133

134134
The user also has the option of specifying the format of the result set via the `delimiter` and `quote with` settings. The default just returns the values as a collection in this form: 'a', 'b', 'c'. They also have the option to limit the number of selections.
@@ -145,7 +145,7 @@ Here is an example for multi-select drop-down at work:
145145

146146
![Image showing a multi-select drop-down parameter](./media/workbook-dropdowns/dropdown-multiselect.png)
147147

148-
## Next Steps
148+
## Next steps
149149

150150
* [Get started](workbooks-visualizations.md) learning more about workbooks many rich visualizations options.
151151
* [Control](workbooks-access-control.md) and share access to your workbook resources.

articles/azure-monitor/platform/workbooks-resources.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Resource parameters allow picking of resources in workbooks. This is useful in s
1818

1919
Values from resource pickers can come from the workbook context, static list or from Azure Resource Graph queries.
2020

21-
## Creating a resource parameter using workbook resources
21+
## Creating a resource parameter (workbook resources)
2222
1. Start with an empty workbook in edit mode.
2323
2. Choose _Add parameters_ from the links within the workbook.
2424
3. Click on the blue _Add Parameter_ button.
@@ -33,7 +33,7 @@ Values from resource pickers can come from the workbook context, static list or
3333

3434
![Image showing the creation of a resource parameter using workbook resources](./media/workbooks-resources/resource-create.png)
3535

36-
## Creating a resource parameter using Azure Resource Graph
36+
## Creating a resource parameter (Azure Resource Graph)
3737
1. Start with an empty workbook in edit mode.
3838
2. Choose _Add parameters_ from the links within the workbook.
3939
3. Click on the blue _Add Parameter_ button.
@@ -59,7 +59,7 @@ Values from resource pickers can come from the workbook context, static list or
5959
6060
[Azure Resource Graph documentation](https://docs.microsoft.com/azure/governance/resource-graph/overview)
6161
62-
## Creating a resource parameter a JSON list
62+
## Creating a resource parameter (JSON list)
6363
1. Start with an empty workbook in edit mode.
6464
2. Choose _Add parameters_ from the links within the workbook.
6565
3. Click on the blue _Add Parameter_ button.

0 commit comments

Comments
 (0)