Skip to content

Commit

Permalink
Adding comment to update datadog service name (#899)
Browse files Browse the repository at this point in the history
Service name should be more specific, just "azure" which is too broad.

Co-authored-by: Ava Silver <[email protected]>
  • Loading branch information
TimbSre and ava-silver authored Feb 19, 2025
1 parent a9bc49a commit 75106ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azure/activity_logs_monitoring/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'; // 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
Expand Down

0 comments on commit 75106ab

Please sign in to comment.