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 3c6e5bb commit 9b3334eCopy full SHA for 9b3334e
tracer/src/Datadog.Trace/ProcessTags.cs
@@ -27,7 +27,7 @@ internal static class ProcessTags
27
private static List<string> GetTagsList()
28
{
29
// ⚠️ make sure entries are added in alphabetical order of keys
30
- List<string> tags = [];
+ var tags = new List<string>(3); // Update if you add more entries below
31
tags.AddNormalizedTag(EntrypointBasedir, GetLastPathSegment(AppContext.BaseDirectory));
32
tags.AddNormalizedTag(EntrypointName, GetEntryPointName());
33
// workdir can be changed by the code, but we consider that capturing the value when this is called is good enough
0 commit comments