Skip to content

Commit 8e61624

Browse files
committed
added peakMemoryUsage aql stats
1 parent ba7a162 commit 8e61624

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/main/java/com/arangodb/entity/CursorEntity.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ public static class Stats {
141141
private Long filtered;
142142
private Long fullCount;
143143
private Double executionTime;
144+
private Long peakMemoryUsage;
144145

145146
public Long getWritesExecuted() {
146147
return writesExecuted;
@@ -170,5 +171,8 @@ public Double getExecutionTime() {
170171
return executionTime;
171172
}
172173

174+
public Long getPeakMemoryUsage() {
175+
return peakMemoryUsage;
176+
}
173177
}
174178
}

0 commit comments

Comments
 (0)