|
1 | | -Another way of normalizing log data is transforming the data at ingestion time. This provides the benefit of storing the data in a parsed format for use in Microsoft Sentinel. |
| 1 | +Another way of normalizing log data is transforming the data at ingestion time. This provides the benefit of storing the data in a parsed format for use in Microsoft Sentinel. |
2 | 2 |
|
3 | 3 |
|
4 | 4 | ## Data collection rules in Azure Monitor |
5 | 5 |
|
6 | | -Data Collection Rules (DCRs) provide an ETL-like pipeline in Azure Monitor, allowing you to define the way that data coming into Azure Monitor should be handled. Depending on the type of workflow, DCRs may specify where data should be sent and may filter or transform data before it's stored in Azure Monitor Logs. Some data collection rules will be created and managed by Azure Monitor, while you may create others to customize data collection for your particular requirements. |
| 6 | +Data Collection Rules (DCRs) provide an ETL-like pipeline in Azure Monitor, allowing you to define the way that data coming into Azure Monitor should be handled. Depending on the type of workflow, DCRs may specify where data should be sent and may filter or transform data before storing it in Azure Monitor Logs. Some data collection rules are created by Azure Monitor, while you may create others to customize data collection for your particular requirements. |
7 | 7 |
|
8 | 8 | ## Types of data collection rules |
9 | | -There are currently two types of data collection rules in Azure Monitor: |
| 9 | +Azure Monitor supports several types of data collection rules. Common types include: |
10 | 10 |
|
11 | | -- **Standard DCR**. Used with different workflows that send data to Azure Monitor. Workflows currently supported are Azure Monitor agent and custom logs. |
| 11 | +- **Standard DCR**. Used with different workflows that send data to Azure Monitor, including the Azure Monitor agent and custom logs ingestion. |
12 | 12 |
|
13 | | -- **Workspace transformation DCR**. Used with a Log Analytics workspace to apply ingestion-time transformations to workflows that don't currently support DCRs. |
| 13 | +- **Workspace transformation DCR**. Used with a Log Analytics workspace to apply ingestion-time transformations to workflows that don't currently support DCRs directly. |
| 14 | + |
| 15 | +> [!NOTE] |
| 16 | +> For the current complete list of DCR types and supported workflows, see [Data collection rules in Azure Monitor](/azure/azure-monitor/essentials/data-collection-rule-overview). |
14 | 17 |
|
15 | 18 |
|
16 | 19 | ## Transformations |
17 | | -Transformations in a data collection rule (DCR) allow you to filter or modify incoming data before it's stored in a Log Analytics workspace. Data transformations are defined using a Kusto Query Language (KQL) statement that is applied individually to each entry in the data source. It must understand the format of the incoming data and create output in the structure of the target table. |
| 20 | +Transformations in a data collection rule (DCR) allow you to filter or modify incoming data before storing it in a Log Analytics workspace. Data transformations are defined using a Kusto Query Language (KQL) statement that is applied individually to each entry in the data source. It must understand the format of the incoming data and create output in the structure of the target table. |
18 | 21 |
|
19 | 22 | ### Transformation structure |
20 | 23 | The input stream is represented by a virtual table named **source** with columns matching the input data stream definition. Following is a typical example of a transformation. This example includes the following functionality: |
|
0 commit comments