Class ExecutionStats

java.lang.Object
com.google.cloud.firestore.ExecutionStats

public final class ExecutionStats extends Object
A ExecutionStats contains information about the execution of a query.
  • Method Details

    • getResultsReturned

      public long getResultsReturned()
      Returns the number of query results.
    • getExecutionDuration

      @Nonnull public Duration getExecutionDuration()
      Returns the total execution time of the query.
    • getReadOperations

      public long getReadOperations()
      Returns the number of read operations that occurred when executing the query.
    • getDebugStats

      @Nonnull public Map<String,Object> getDebugStats()
      Returns a map that contains additional statistics related to query execution. Note: The content of this map are subject to change.