Skip to content

Commit 6f422fb

Browse files
committed
updates
1 parent 9590c28 commit 6f422fb

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

articles/azure-monitor/essentials/data-collection-endpoint-overview.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ ms.reviwer: nikeist
1515
A data collection endpoint (DCE) is a connection where data sources send collected data for processing and ingestion into Azure Monitor. This article provides an overview of data collection endpoints and explains how to create and set them up based on your deployment.
1616

1717
## When is a DCE required?
18-
Prior to March 31, 2024, a DCE was required for all data collection scenarios using a DCR that required an endpoint. Any DCR created after this date includes its own endpoints for logs and metrics. The URL for these endpoints can be found in the [`logsIngestion` and `metricsIngestion`](./data-collection-rule-structure.md#endpoints) properties of the DCR. These endpoints can be used instead of a DCE for most scenarios.
18+
Prior to March 31, 2024, a DCE was required for all data collection scenarios using a DCR that required an endpoint. Any DCR created after this date includes its own endpoints for logs and metrics. The URL for these endpoints can be found in the [`logsIngestion` and `metricsIngestion`](./data-collection-rule-structure.md#endpoints) properties of the DCR. These endpoints can be used instead of a DCE for any direct ingestion scenarios.
1919

2020
Endpoints cannot be added to an existing DCR, but you can keep using any existing DCRs with existing DCEs. If you want to move to a DCR endpoint, then you must create a new DCR to replace the existing one. A DCR with endpoints can also use a DCE. In this case, you can choose whether to use the DCE or the DCR endpoints for each of the clients that use the DCR.
2121

22-
The following scenarios can't use the DCR endpoints and require a DCE:
22+
The following scenarios can currently use DCR endpoints. A DCE required if private link is used.
2323

24-
- [Private link](../logs/private-link-security.md)
24+
- [Logs ingestion API](../logs/logs-ingestion-api-overview.md).
2525

2626

2727
## Components of a DCE
@@ -129,7 +129,6 @@ The sample data collection endpoint (DCE) below is for virtual machines with Azu
129129

130130
- Data collection endpoints only support Log Analytics workspaces as a destination for collected data. [Custom metrics (preview)](../essentials/metrics-custom-overview.md) collected and uploaded via Azure Monitor Agent aren't currently controlled by DCEs.
131131

132-
- Data collection endpoints are where [Logs ingestion API ingestion limits](../service-limits.md#logs-ingestion-api) are applied.
133132

134133
## Next steps
135134
- [Associate endpoints to machines](../agents/data-collection-rule-azure-monitor-agent.md#create-a-data-collection-rule)

articles/azure-monitor/essentials/data-collection-rule-samples.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,8 @@ The sample [data collection rule](../essentials/data-collection-rule-overview.md
286286
- Sends data to a table called MyTable_CL in a workspace called my-workspace.
287287
- Applies a [transformation](../essentials//data-collection-transformations.md) to the incoming data.
288288

289+
> [!NOTE]
290+
> Logs ingestion API requires the [logsIngestion](../essentials/data-collection-rule-structure.md#endpoints) property which includes the URL of the endpoint. This property is added to the DCR after it's created.
289291
290292
```json
291293
{

articles/azure-monitor/essentials/data-collection-rule-structure.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,7 @@ Contains the URLs of the endpoints for the DCR. This section and its properties
3636
| `metricsIngestion` | URL for ingestion endpoint for metric data. |
3737

3838
**Scenarios**
39-
- Azure Monitor agent
4039
- Logs ingestion API
41-
- Events Hubs
4240

4341
## `dataCollectionEndpointId`
4442
Specifies the [data collection endpoint (DCE)](data-collection-endpoint-overview.md) used by the DCR.

articles/azure-monitor/logs/tutorial-logs-ingestion-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ The [DCR](../essentials/data-collection-rule-overview.md) defines how the data w
248248
249249
:::image type="content" source="media/tutorial-workspace-transformations-api/data-collection-rule-details.png" lightbox="media/tutorial-workspace-transformations-api/data-collection-rule-details.png" alt-text="Screenshot that shows DCR details.":::
250250
251-
1. Copy the **Immutable ID** and **Logs ingestion URI** for the DCR. You'll use these in a later step when you send sample data using the API.
251+
1. Copy the **Immutable ID** and **Logs ingestion URI** for the DCR. You'll use these when you [send data to Azure Monitor using the API](./tutorial-logs-ingestion-code.md).
252252
253253
:::image type="content" source="media/tutorial-logs-ingestion-api/data-collection-rule-json-view.png" lightbox="media/tutorial-logs-ingestion-api/data-collection-rule-json-view.png" alt-text="Screenshot that shows DCR JSON view.":::
254254

articles/azure-monitor/logs/tutorial-logs-ingestion-code.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ This article provides sample code using the [Logs ingestion API](logs-ingestion-
1212
- Custom table in a Log Analytics workspace
1313
- Data collection rule (DCR) to direct the data to the target table
1414
- Microsoft Entra application with access to the DCR
15+
- Data collection endpoint (DCE) if you're using private link. Otherwise, use the DCR logs endpoint.
16+
17+
18+
1519

1620
## Sample code
1721

0 commit comments

Comments
 (0)