AE86 hace 3 años
padre
commit
79cdc9f462
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      dbsyncer-web/src/main/resources/static/js/monitor/index.js

+ 1 - 1
dbsyncer-web/src/main/resources/static/js/monitor/index.js

@@ -397,7 +397,7 @@ function showMetricTable(metrics){
     $.each(metrics, function(i) {
         html += '<tr>';
         html += '   <td style="width:5%;">'+ (i + 1) +'</td>';
-        html += '   <td>'+ metrics[i].metricName +'</td>';
+        html += '   <td>'+ '['+ metrics[i].group + ']' + metrics[i].metricName +'</td>';
         html += '   <td>'+ metrics[i].detail +'</td>';
         html += '</tr>';
     });