Skip to content

Commit

Permalink
added peakMemoryUsage aql stats
Browse files Browse the repository at this point in the history
  • Loading branch information
rashtao committed Mar 24, 2020
1 parent ba7a162 commit 8e61624
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/com/arangodb/entity/CursorEntity.java
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ public static class Stats {
private Long filtered;
private Long fullCount;
private Double executionTime;
private Long peakMemoryUsage;

public Long getWritesExecuted() {
return writesExecuted;
Expand Down Expand Up @@ -170,5 +171,8 @@ public Double getExecutionTime() {
return executionTime;
}

public Long getPeakMemoryUsage() {
return peakMemoryUsage;
}
}
}

0 comments on commit 8e61624

Please sign in to comment.