yunqingmoswu commented on code in PR #6808: URL: https://github.com/apache/inlong/pull/6808#discussion_r1046618428
########## inlong-sort/sort-connectors/base/src/main/java/org/apache/inlong/sort/base/metric/sub/SourceTableMetricData.java: ########## @@ -122,9 +122,14 @@ private SourceMetricData buildSubSourceMetricData(String[] schemaInfoArray, Metr String metricGroupLabels = labels.entrySet().stream().map(entry -> entry.getKey() + "=" + entry.getValue()) .collect(Collectors.joining(DELIMITER)); StringBuilder labelBuilder = new StringBuilder(metricGroupLabels); - labelBuilder.append(DELIMITER).append(Constants.DATABASE_NAME).append("=").append(schemaInfoArray[0]) - .append(DELIMITER).append(Constants.TABLE_NAME).append("=").append(schemaInfoArray[1]); - + if (schemaInfoArray.length == 2) { + labelBuilder.append(DELIMITER).append(Constants.DATABASE_NAME).append("=").append(schemaInfoArray[0]) + .append(DELIMITER).append(Constants.TABLE_NAME).append("=").append(schemaInfoArray[1]); + } else if (schemaInfoArray.length == 3) { + labelBuilder.append(DELIMITER).append(Constants.DATABASE_NAME).append("=").append(schemaInfoArray[0]) + .append(DELIMITER).append(Constants.SCHEMA_NAME).append("=").append(schemaInfoArray[1]) + .append(DELIMITER).append(Constants.TABLE_NAME).append("=").append(schemaInfoArray[2]); + } Review Comment: Maybe add a validation is better? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@inlong.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org