Authored by 孟令阶

Add

... ... @@ -146,10 +146,9 @@ public class PageAnalyzeHandler implements TraceHandler, Serializable {
puts2.add(put2);
logger.info("put data to trace_api_source_analyze_minutes, {}", put2);
String rowKey3 = "page-" + now;
String rowKey3 = "page-" + now + tuple2._1.split(SPLIT_STR)[0];
Put put3 = new Put(Bytes.toBytes(rowKey3));
put3.addColumn(Bytes.toBytes("data"), Bytes.toBytes("page"), Bytes.toBytes(tuple2._1.split(SPLIT_STR)[0]));
put3.addColumn(Bytes.toBytes("data"), Bytes.toBytes("api"), Bytes.toBytes(tuple2._1.split(SPLIT_STR)[1]));
puts3.add(put3);
logger.info("put data to page_statistics, {}", put3);
... ...