Skip to content

Commit d0c6134

Browse files
committed
More changes to formatting
1 parent ac3d692 commit d0c6134

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

articles/azure-monitor/logs/logs-table-plans.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -71,39 +71,39 @@ To configure a table for Basic logs or Analytics logs, call the [Tables - Update
7171
PATCH https://management.azure.com/subscriptions/<subscriptionId>/resourcegroups/<resourceGroupName>/providers/Microsoft.OperationalInsights/workspaces/<workspaceName>/tables/<tableName>?api-version=2021-12-01-preview
7272
```
7373

74-
> [!IMPORTANT]
75-
> Use the bearer token for authentication. Learn more about [using bearer tokens](https://social.technet.microsoft.com/wiki/contents/articles/51140.azure-rest-management-api-the-quickest-way-to-get-your-bearer-token.aspx).
76-
7774
**Request body**
7875

79-
|Name | Type | Description |
80-
| --- | --- | --- |
81-
|properties.plan | string | The table plan. Possible values are `Analytics` and `Basic`.|
76+
| Name | Type | Description |
77+
|-----------------|--------|--------------------------------------------------------------|
78+
| properties.plan | string | The table plan. Possible values are `Analytics` and `Basic`. |
79+
80+
> [!IMPORTANT]
81+
> Use the bearer token for authentication. Learn more about [using bearer tokens](https://social.technet.microsoft.com/wiki/contents/articles/51140.azure-rest-management-api-the-quickest-way-to-get-your-bearer-token.aspx).
8282
8383
#### Example
8484

8585
This example configures the `ContainerLogV2` table for Basic logs.
8686

8787
Container Insights uses `ContainerLog` by default. To switch to using `ContainerLogV2` for Container insights, [enable the ContainerLogV2 schema](../containers/container-insights-logging-v2.md) before you convert the table to Basic logs.
8888

89-
* **Sample request**
89+
**Sample request**
90+
91+
```http
92+
PATCH https://management.azure.com/subscriptions/ContosoSID/resourcegroups/ContosoRG/providers/Microsoft.OperationalInsights/workspaces/ContosoWorkspace/tables/ContainerLogV2?api-version=2021-12-01-preview
93+
```
94+
95+
* Use this request body to change to Basic logs:
9096

91-
```http
92-
PATCH https://management.azure.com/subscriptions/ContosoSID/resourcegroups/ContosoRG/providers/Microsoft.OperationalInsights/workspaces/ContosoWorkspace/tables/ContainerLogV2?api-version=2021-12-01-preview
93-
```
94-
95-
Use this request body to change to Basic logs:
96-
9797
```http
9898
{
9999
"properties": {
100100
"plan": "Basic"
101101
}
102102
}
103103
```
104-
105-
Use this request body to change to Analytics Logs:
106-
104+
105+
* Use this request body to change to Analytics Logs:
106+
107107
```http
108108
{
109109
"properties": {
@@ -112,9 +112,9 @@ Container Insights uses `ContainerLog` by default. To switch to using `Container
112112
}
113113
```
114114
115-
* **Sample response**
115+
**Sample response**
116116
117-
This sample is the response for a table changed to Basic logs:
117+
* This sample is the response for a table changed to Basic logs:
118118
119119
Status code: 200
120120

0 commit comments

Comments
 (0)