We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb9f323 commit 6edcf1bCopy full SHA for 6edcf1b
articles/azure-monitor/logs/tutorial-logs-ingestion-code.md
@@ -198,7 +198,7 @@ The following sample code uses the [Azure Monitor Ingestion client library for J
198
async function main() {
199
const logsIngestionEndpoint = process.env.LOGS_INGESTION_ENDPOINT || "logs_ingestion_endpoint";
200
const ruleId = process.env.DATA_COLLECTION_RULE_ID || "data_collection_rule_id";
201
- const streamName = process.env.STREAM_NAME || "data_stream_name";
+ const streamName = "Custom-MyTableRawData";
202
const credential = new DefaultAzureCredential();
203
const client = new LogsIngestionClient(logsIngestionEndpoint, credential);
204
const logs = [
0 commit comments