diff --git a/src/Microsoft.Diagnostics.EventFlow.ServiceFabric/ServiceFabricDiagnosticPipelineFactory.cs b/src/Microsoft.Diagnostics.EventFlow.ServiceFabric/ServiceFabricDiagnosticPipelineFactory.cs index 93587870..bad082a2 100644 --- a/src/Microsoft.Diagnostics.EventFlow.ServiceFabric/ServiceFabricDiagnosticPipelineFactory.cs +++ b/src/Microsoft.Diagnostics.EventFlow.ServiceFabric/ServiceFabricDiagnosticPipelineFactory.cs @@ -18,8 +18,8 @@ namespace Microsoft.Diagnostics.EventFlow.ServiceFabric { public static class ServiceFabricDiagnosticPipelineFactory { - // The "name" capture group will math any combinatione of one or more "words" '\w', - // and separators as dot '.', underscore '_' (captured by \w). dash '-', colon ':', slash '/', and hash '#' + // The "" capture group will match any combination of, one or more, words '\w' + // and separators as: dot '.', underscore '_' (captured by \w), dash '\-', colon ':', slash '/', and hash '#'. public static readonly string FabricConfigurationValueReference = @"servicefabric:/(?
\w+)/(?[\w.\-:/#]+)"; public static readonly string FabricConfigurationFileReference = @"servicefabricfile:/(?.+)"; public const string DefaultConfigurationFileName = "eventFlowConfig.json";