From 06a960e88b3c76d99a424147e791c6b0d03524c0 Mon Sep 17 00:00:00 2001 From: Alex Hemsath Date: Thu, 22 Feb 2024 16:11:54 -0800 Subject: [PATCH] Correct comment --- src/Agent/NewRelic/Agent/Core/Utilization/VendorInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Agent/NewRelic/Agent/Core/Utilization/VendorInfo.cs b/src/Agent/NewRelic/Agent/Core/Utilization/VendorInfo.cs index b8c8a1ccd1..bbeaab8143 100644 --- a/src/Agent/NewRelic/Agent/Core/Utilization/VendorInfo.cs +++ b/src/Agent/NewRelic/Agent/Core/Utilization/VendorInfo.cs @@ -25,7 +25,7 @@ public class VendorInfo private const string ValidateMetadataRegex = @"^[a-zA-Z0-9-_. /]*$"; #if NETSTANDARD2_0 private const string ContainerIdV1Regex = @".*:cpu:/docker/([0-9a-f]{64}).*"; - private const string ContainerIdV1FallbackRegex = @"([0-9a-f]{64})"; // This is the old regex that just looks for any 64-char alphanumeric string + private const string ContainerIdV1FallbackRegex = @"([0-9a-f]{64})"; // This is the old regex that just looks for any 64-char hexadecimal string private const string ContainerIdV2Regex = ".*/docker/containers/([0-9a-f]{64})/.*"; #endif