public interface MetaQueryPlanStatistic
| Modifier and Type | Method and Description |
|---|---|
long |
getAvgLoadedBeans()
Return the average number of bean loaded per query.
|
long |
getAvgTimeMicros()
Return the average query execution time in microseconds.
|
Class<?> |
getBeanType()
Return the bean type this query plan is for.
|
long |
getCollectionStart()
Return the time collection started (or was last reset).
|
long |
getExecutionCount()
Return the total number of queries executed.
|
long |
getLastQueryTime()
Return the time of the last query executed using this plan.
|
long |
getMaxTimeMicros()
Return the max execution time for this query.
|
List<MetaQueryPlanOriginCount> |
getOrigins()
Return the 'origin' points and paths that resulted in the query being
executed and the associated number of times the query was executed via that
path.
|
String |
getQueryPlanHash()
Return a string representation of the query plan hash.
|
String |
getSql()
Return the sql executed.
|
long |
getTotalLoadedBeans()
Return the total number of beans loaded by the queries.
|
long |
getTotalTimeMicros()
Return the total time taken by executions of this query.
|
boolean |
isAutoTuned()
Return true if this query plan was tuned by AutoTune.
|
Class<?> getBeanType()
boolean isAutoTuned()
String getQueryPlanHash()
long getExecutionCount()
long getTotalLoadedBeans()
This excludes background fetching.
long getTotalTimeMicros()
long getMaxTimeMicros()
long getCollectionStart()
long getLastQueryTime()
long getAvgTimeMicros()
This excludes background fetching.
long getAvgLoadedBeans()
This excludes background fetching.
List<MetaQueryPlanOriginCount> getOrigins()
This includes direct and lazy loading paths.
Copyright © 2016. All rights reserved.