You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-monitor/platform/workbooks-automate.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ This can be useful in scenarios like:
22
22
23
23
The workbook will be created in the desired sub/resource-group and with the content specified in the Resource Manager templates.
24
24
25
-
## Creating an Azure Resource Manager template that deploys a workbook
25
+
## Azure Resource Manager template for deploying workbooks
26
26
1. Open a workbook that you want to deploy programmatically.
27
27
2. Switch the workbook to edit mode by clicking on the _Edit_ toolbar item.
28
28
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
93
93
}
94
94
```
95
95
96
-
### Template Parameters
96
+
### Template parameters
97
97
98
98
| Parameter | Explanation |
99
99
| :------------- |:-------------|
@@ -105,7 +105,7 @@ This template shows how to deploy a simple workbook that displays a 'Hello World
105
105
|`location`| The Azure location where the workbook will be created. Use _[resourceGroup().location]_ to create it in the same location as the resource group |
106
106
|`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 |
107
107
108
-
### Workbook Types
108
+
### Workbook types
109
109
Workbook types specify which workbook gallery type the new workbook instance will show up under. Options include:
Copy file name to clipboardExpand all lines: articles/azure-monitor/platform/workbooks-data-sources.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,37 +47,37 @@ To make a query control use this data source, use the Query type drop-down to ch
47
47
48
48

49
49
50
-
## Alerts (Preview)
50
+
## Alerts (preview)
51
51
52
52
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.
53
53
54
54
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.
55
55
56
56

57
57
58
-
## Workload Health (Preview)
58
+
## Workload health (preview)
59
59
60
60
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.
61
61
62
62
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.
63
63
64
64

65
65
66
-
## Azure Resource Health
66
+
## Azure resource health
67
67
68
68
Workbooks support getting Azure resource health and combining it with other data sources to create rich, interactive health reports
69
69
70
70
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.
71
71
72
72

73
73
74
-
## Azure Data Explorer (Preview)
74
+
## Azure Data Explorer (preview)
75
75
76
76
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.
77
77
78
78

79
79
80
-
## Next Steps
80
+
## Next steps
81
81
82
82
*[Get started](workbooks-visualizations.md) learning more about workbooks many rich visualizations options.
83
83
*[Control](workbooks-access-control.md) and share access to your workbook resources.
Copy file name to clipboardExpand all lines: articles/azure-monitor/platform/workbooks-dropdowns.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -105,7 +105,7 @@ If your query result/json contains a "group" field, the dropdown will display gr
105
105

106
106
107
107
108
-
## Parameter Value, Label, Selection and Group
108
+
## Parameter value, label, selection and group
109
109
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.
110
110
111
111
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
128
128
|`{DependencyName:label}`| The selected label | 🌐 GET fabrikamaccount |
129
129
|`{DependencyName:value}`| The selected value | GET fabrikamaccount |
130
130
131
-
## Multiple Selection
131
+
## Multiple selection
132
132
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.
133
133
134
134
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:
145
145
146
146

147
147
148
-
## Next Steps
148
+
## Next steps
149
149
150
150
*[Get started](workbooks-visualizations.md) learning more about workbooks many rich visualizations options.
151
151
*[Control](workbooks-access-control.md) and share access to your workbook resources.
0 commit comments