Do you struggle to find a MetricId? Adding the simple script below will display the MetricId in the header.

Screen Shot 2020-03-11 at 11.05.04 AM.png

Screen Shot 2020-03-11 at 11.06.26 AM.png

Add MetricId to Header.gif

<script>
    $(function() {
        var metricId = $('[id$="hfMetricId"]').val();
        $(".panel-title").append(' (Id: ' + metricId + ')');
    });
</script>