diff --git a/src/Umbraco.Web/HealthCheck/NotificationMethods/SlackNotificationMethod.cs b/src/Umbraco.Web/HealthCheck/NotificationMethods/SlackNotificationMethod.cs index 2dba3b005c..2fc127af3f 100644 --- a/src/Umbraco.Web/HealthCheck/NotificationMethods/SlackNotificationMethod.cs +++ b/src/Umbraco.Web/HealthCheck/NotificationMethods/SlackNotificationMethod.cs @@ -101,7 +101,7 @@ namespace Umbraco.Web.HealthCheck.NotificationMethods Channel = Channel, Attachments = attachments, IconEmoji = icon, - Username = Username, + Username = string.Format("{0} [{1}]", Username, Environment.MachineName), Text = messageText }; await slackClient.PostAsync(slackMessage);