From 0923354a35931fc7bf1b619a64dafc81b225f7f8 Mon Sep 17 00:00:00 2001 From: Tim B <163202768+TimbSre@users.noreply.github.com> Date: Mon, 10 Feb 2025 15:00:23 -0600 Subject: [PATCH 1/2] Update index.js Service name should be something like azure-b2c-act-logs not "azure" which is too broad. --- azure/activity_logs_monitoring/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure/activity_logs_monitoring/index.js b/azure/activity_logs_monitoring/index.js index e6308fe1..76fb02c2 100644 --- a/azure/activity_logs_monitoring/index.js +++ b/azure/activity_logs_monitoring/index.js @@ -22,7 +22,7 @@ const DD_HTTP_URL = process.env.DD_URL || 'http-intake.logs.' + DD_SITE; const DD_HTTP_PORT = process.env.DD_PORT || 443; const DD_REQUEST_TIMEOUT_MS = 10000; const DD_TAGS = process.env.DD_TAGS || ''; // Replace '' by your comma-separated list of tags -const DD_SERVICE = process.env.DD_SERVICE || 'azure'; +const DD_SERVICE = process.env.DD_SERVICE || 'azure'; //Choose the name of the service according to your internal naming convention const DD_SOURCE = process.env.DD_SOURCE || 'azure'; const DD_SOURCE_CATEGORY = process.env.DD_SOURCE_CATEGORY || 'azure'; const DD_PARSE_DEFENDER_LOGS = process.env.DD_PARSE_DEFENDER_LOGS; // Boolean whether to enable special parsing of Defender for Cloud logs. Set to 'false' to disable From 61ef52a00ab28ee98e5e14c9d3b67157c5cca7a8 Mon Sep 17 00:00:00 2001 From: Ava Silver Date: Wed, 19 Feb 2025 10:09:28 -0500 Subject: [PATCH 2/2] Update comment wording --- azure/activity_logs_monitoring/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure/activity_logs_monitoring/index.js b/azure/activity_logs_monitoring/index.js index 76fb02c2..8ae06b65 100644 --- a/azure/activity_logs_monitoring/index.js +++ b/azure/activity_logs_monitoring/index.js @@ -22,7 +22,7 @@ const DD_HTTP_URL = process.env.DD_URL || 'http-intake.logs.' + DD_SITE; const DD_HTTP_PORT = process.env.DD_PORT || 443; const DD_REQUEST_TIMEOUT_MS = 10000; const DD_TAGS = process.env.DD_TAGS || ''; // Replace '' by your comma-separated list of tags -const DD_SERVICE = process.env.DD_SERVICE || 'azure'; //Choose the name of the service according to your internal naming convention +const DD_SERVICE = process.env.DD_SERVICE || 'azure'; // Replace 'azure' with the name of your service const DD_SOURCE = process.env.DD_SOURCE || 'azure'; const DD_SOURCE_CATEGORY = process.env.DD_SOURCE_CATEGORY || 'azure'; const DD_PARSE_DEFENDER_LOGS = process.env.DD_PARSE_DEFENDER_LOGS; // Boolean whether to enable special parsing of Defender for Cloud logs. Set to 'false' to disable