You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation of Process.MachineName has the following note: When the associated process is executing on the local machine, this property returns a period (".") for the machine name
This would mean that this line will always return . because the current process will always be running on the local machine.
When using NLog.Target.Stackify then the reported server name is always
.. This seems to be caused by the following line:stackify-api-dotnet/Src/StackifyLib/Models/EnvironmentDetail.cs
Line 192 in 06a20bf
The documentation of Process.MachineName has the following note:
When the associated process is executing on the local machine, this property returns a period (".") for the machine nameThis would mean that this line will always return
.because the current process will always be running on the local machine.