diff --git a/src/VirtualClient/VirtualClient.Actions/Network/NetworkingWorkload/NTttcp/NTttcpExecutor.cs b/src/VirtualClient/VirtualClient.Actions/Network/NetworkingWorkload/NTttcp/NTttcpExecutor.cs index 40ca85b281..3d3d752951 100644 --- a/src/VirtualClient/VirtualClient.Actions/Network/NetworkingWorkload/NTttcp/NTttcpExecutor.cs +++ b/src/VirtualClient/VirtualClient.Actions/Network/NetworkingWorkload/NTttcp/NTttcpExecutor.cs @@ -504,7 +504,7 @@ await this.ProcessStartRetryPolicy.ExecuteAsync(async () => await this.LogProcessDetailsAsync( sendProcess, relatedContext, - "NTttcp", + "NTttcp-Send", results: new KeyValuePair(this.SendResultsPath, sendResults)); this.CaptureDirectionalMetrics( @@ -518,7 +518,7 @@ await this.LogProcessDetailsAsync( } else { - await this.LogProcessDetailsAsync(sendProcess, relatedContext, "NTttcp"); + await this.LogProcessDetailsAsync(sendProcess, relatedContext, "NTttcp-Send"); this.Logger.LogMessage($"{this.TypeName}.FullDuplexSendFailed", LogLevel.Warning, relatedContext); } @@ -531,7 +531,7 @@ await this.LogProcessDetailsAsync( await this.LogProcessDetailsAsync( receiveProcess, relatedContext, - "NTttcp", + "NTttcp-Receive", results: new KeyValuePair(this.ReceiveResultsPath, receiveResults)); this.CaptureDirectionalMetrics( @@ -545,7 +545,7 @@ await this.LogProcessDetailsAsync( } else { - await this.LogProcessDetailsAsync(receiveProcess, relatedContext, "NTttcp"); + await this.LogProcessDetailsAsync(receiveProcess, relatedContext, "NTttcp-Receive"); this.Logger.LogMessage($"{this.TypeName}.FullDuplexReceiveFailed", LogLevel.Warning, relatedContext); }