@@ -43,7 +43,7 @@ The following script uses the [Azure Monitor Ingestion client library for .NET](
43
43
using Azure.Monitor.Ingestion;
44
44
45
45
// Initialize variables
46
- var endpoint = new Uri("https://logs-ingestion-rzmk.eastus2-1.ingest .monitor.azure.com");
46
+ var endpoint = new Uri("https://my-url .monitor.azure.com");
47
47
var ruleId = "dcr-00000000000000000000000000000000";
48
48
var streamName = "Custom-MyTableRawData";
49
49
@@ -160,7 +160,7 @@ The following sample code uses the [Azure Monitor Ingestion Logs client module f
160
160
)
161
161
162
162
// logs ingestion URI
163
- const endpoint = "https://logs-ingestion-rzmk.eastus2-1.ingest .monitor.azure.com"
163
+ const endpoint = "https://my-url .monitor.azure.com"
164
164
// data collection rule (DCR) immutable ID
165
165
const ruleID = "dcr-00000000000000000000000000000000"
166
166
// stream name in the DCR that represents the destination table
@@ -257,7 +257,7 @@ The following sample code uses the [Azure Monitor Ingestion client library for J
257
257
public static void main(String[] args) {
258
258
259
259
LogsIngestionClient client = new LogsIngestionClientBuilder()
260
- .endpoint("https://logs-ingestion-rzmk.eastus2-1.ingest .monitor.azure.com")
260
+ .endpoint("https://my-url .monitor.azure.com")
261
261
.credential(new DefaultAzureCredentialBuilder().build())
262
262
.buildClient();
263
263
@@ -325,7 +325,7 @@ The following sample code uses the [Azure Monitor Ingestion client library for J
325
325
require("dotenv").config();
326
326
327
327
async function main() {
328
- const logsIngestionEndpoint = "https://logs-ingestion-rzmk.eastus2-1.ingest .monitor.azure.com";
328
+ const logsIngestionEndpoint = "https://my-url .monitor.azure.com";
329
329
const ruleId = "dcr-00000000000000000000000000000000";
330
330
const streamName = "Custom-MyTableRawData";
331
331
const credential = new DefaultAzureCredential();
@@ -484,7 +484,7 @@ The following sample code uses the [Azure Monitor Ingestion client library for P
484
484
485
485
```python
486
486
# information needed to send data to the DCR endpoint
487
- endpoint_uri = "https://logs-ingestion-rzmk.eastus2-1.ingest .monitor.azure.com" # logs ingestion endpoint of the DCR
487
+ endpoint_uri = "https://my-url .monitor.azure.com" # logs ingestion endpoint of the DCR
488
488
dcr_immutableid = "dcr-00000000000000000000000000000000" # immutableId property of the Data Collection Rule
489
489
stream_name = "Custom-MyTableRawData" #name of the stream in the DCR that represents the destination table
490
490
0 commit comments