diff --git a/hugegraph-api/src/main/java/org/apache/hugegraph/metrics/SlowQueryLog.java b/hugegraph-api/src/main/java/org/apache/hugegraph/metrics/SlowQueryLog.java index 4adbbaf46a..cb3f1c7125 100644 --- a/hugegraph-api/src/main/java/org/apache/hugegraph/metrics/SlowQueryLog.java +++ b/hugegraph-api/src/main/java/org/apache/hugegraph/metrics/SlowQueryLog.java @@ -34,6 +34,7 @@ public class SlowQueryLog { public SlowQueryLog(Long executeTime, Long startTime, String rawQuery, String method, Long threshold, String path) { this.executeTime = executeTime; + this.startTime = startTime; this.rawQuery = rawQuery; this.method = method; this.threshold = threshold;