Value from a custom Check Defintion metric not displaying in Metric ExplorerIssue The custom check definition value for Windows is not displaying the metric in the explorer. The issue can be reproduced by testing the check, and the result shows the output but does not display the metric in the explorer. We have verified the default metric check and do not see any values.ReleaseAll ReleasesResolutionBelow MID Server Script Include running from the MID Server, parses the check result:MonitorMetricParser /nav_to.do?uri=ecc_agent_script_include.do?sys_id=6b996093673b2300b7b72dbd2685efc6From this script, you can see that if you set mid server property sn_agent.logger.trace=true, you will get more logging in mid agent log as it parses the result.And this bitvar removeNodePrefix = function(line, node) {// If the line starts with the host name, skip this part and continue. this should handle the case the host name is FQDN and contains dotsBelow line suggests you don't need to start with the hostname, so could get away with just <metric name> <result> <unix epoch timestamp>The MonitorMetricParser script has other comments documenting what it expects:// If there is a dot character in the metric name, use the part before the dot as the resource name//examples: disk_usage.root.run.used, disk_usage.root.snap.core.8213.used, disk_usage.root.snap.core.8268.used_percentageSo you need to configure the check definition with the correct parameters and format for the metric to be updated. - Set up the check parameters to define the boundaries between warning/error.- Get the output from the check in the right format i.e., metric name> <result> <unix epoch timestamp>