tablestore/src/main/java/com/alicloud/openservices/tablestore/timeserieswriter/handle/TimeseriesWriterHandleStatistics.java [64:75]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String toString() {
        StringBuilder builder = new StringBuilder();
        builder.append("WriterStatistics: {\n")
                .append("    totalRequestCount=").append(totalRequestCount.get()).append(",\n")
                .append("    totalRowsCount=").append(totalRowsCount.get()).append(",\n")
                .append("    totalSucceedRowsCount=").append(totalSucceedRowsCount.get()).append(",\n")
                .append("    totalFailedRowsCount=").append(totalFailedRowsCount.get()).append(",\n")
                .append("    totalSingleRowRequestCount=").append(totalSingleRowRequestCount.get()).append(",\n")
                .append("}");

        return builder.toString();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tablestore/src/main/java/com/alicloud/openservices/tablestore/reader/ReaderStatistics.java [36:47]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String toString() {
        StringBuilder builder = new StringBuilder();
        builder.append("ReaderStatistics: {\n")
                .append("    totalRequestCount=").append(totalRequestCount.get()).append(",\n")
                .append("    totalRowsCount=").append(totalRowsCount.get()).append(",\n")
                .append("    totalSucceedRowsCount=").append(totalSucceedRowsCount.get()).append(",\n")
                .append("    totalFailedRowsCount=").append(totalFailedRowsCount.get()).append(",\n")
                .append("    totalSingleRowRequestCount=").append(totalSingleRowRequestCount.get()).append(",\n")
                .append("}");

        return builder.toString();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tablestore/src/main/java/com/alicloud/openservices/tablestore/writer/handle/WriterHandleStatistics.java [43:54]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String toString() {
        StringBuilder builder = new StringBuilder();
        builder.append("WriterStatistics: {\n")
                .append("    totalRequestCount=").append(totalRequestCount.get()).append(",\n")
                .append("    totalRowsCount=").append(totalRowsCount.get()).append(",\n")
                .append("    totalSucceedRowsCount=").append(totalSucceedRowsCount.get()).append(",\n")
                .append("    totalFailedRowsCount=").append(totalFailedRowsCount.get()).append(",\n")
                .append("    totalSingleRowRequestCount=").append(totalSingleRowRequestCount.get()).append(",\n")
                .append("}");

        return builder.toString();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



