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/logs/tutorial-logs-ingestion-api.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,8 +95,8 @@ Use the **Tables - Update** API to create the table with the following PowerShel
95
95
"description": "Name of the counter"
96
96
},
97
97
{
98
-
"name": "CounterName",
99
-
"type": "string",
98
+
"name": "CounterValue",
99
+
"type": "real",
100
100
"description": "Value collected for the counter"
101
101
}
102
102
]
@@ -185,7 +185,7 @@ A [DCE](../essentials/data-collection-endpoint-overview.md) is required to accep
185
185
:::image type="content" source="media/tutorial-logs-ingestion-api/data-collection-endpoint-json.png" lightbox="media/tutorial-logs-ingestion-api/data-collection-endpoint-json.png" alt-text="Screenshot that shows the DCE resource ID.":::
186
186
187
187
## Create a data collection rule
188
-
The [DCR](../essentials/data-collection-rule-overview.md) defines the schema of data that's being sent to the HTTP endpoint. It also defines the transformation that will be applied to it. The DCR also defines the destination workspace and table the transformed data will be sent to.
188
+
The [DCR](../essentials/data-collection-rule-overview.md) defines the schema of data that's being sent to the HTTP endpoint and the [transformation](../essentials/data-collection-transformations.md) that will be applied to it before it's send to the workspace. The DCR also defines the destination workspace and table the transformed data will be sent to.
189
189
190
190
1. In the Azure portal's search box, enter **template** and then select **Deploy a custom template**.
191
191
@@ -204,7 +204,7 @@ The [DCR](../essentials/data-collection-rule-overview.md) defines the schema of
204
204
- `dataCollectionEndpointId`: Identifies the Resource ID of the data collection endpoint.
205
205
- `streamDeclarations`: Defines the columns of the incoming data.
206
206
- `destinations`: Specifies the destination workspace.
207
-
- `dataFlows`: Matches the stream with the destination workspace and specifies the transformation query and the destination table.
207
+
- `dataFlows`: Matches the stream with the destination workspace and specifies the transformation query and the destination table. The output of the destination query is what will be sent to the destination table.
0 commit comments