/// <returns>the reporting string of health of the node</returns>
        internal virtual string GetHealthReport()
        {
            string scriptReport = (nodeHealthScriptRunner == null) ? string.Empty : nodeHealthScriptRunner
                                  .GetHealthReport();

            if (scriptReport.Equals(string.Empty))
            {
                return(dirsHandler.GetDisksHealthReport(false));
            }
            else
            {
                return(scriptReport.Concat(Separator + dirsHandler.GetDisksHealthReport(false)));
            }
        }