public final class LogQuery
extends java.lang.Object
implements java.lang.Cloneable, java.io.Serializable
LogService.fetch(LogQuery)
.
startTime
is the earliest request completion or last-update time
that results should be fetched for, in seconds since the Unix epoch. If
null
then no requests will be excluded for ending too long ago.
endTime
is the latest request completion or last-update time that
results should be fetched for, in seconds since the Unix epoch. If
null
then no requests will be excluded for ending too recently.
offset
is a cursor into the log stream retrieved from a previously
emitted RequestLogs.getOffset()
. This iterator will begin returning
logs immediately after the record from which the offset came. If
null
, the query will begin at startTime
.
minLogLevel
is a LogService.LogLevel
which serves as a
filter on the requests returned. Requests with no application logs at or
above the specified level will be omitted. Works even if
includeAppLogs
is not True.
includeIncomplete
selects whether requests that have started but not
yet finished should be included in the query. Defaults to False.
includeAppLogs
specifies whether or not to include application logs
in the query results. Defaults to False.
majorVersionIds
specifies which the version(s) of the application
for which logs should be retrieved. If null
, logs for the version
making the request will be returned.
moduleVersions
specifies which the module version(s) of the
application for which logs should be retrieved. If null
, logs for
the version making the request will be returned.
requestIds
, if not null
, indicates that instead of a
time-based scan, logs for the specified requests should be returned.
See the Request IDs section of
the Java Servlet Environment documentation for how to retrieve these IDs
at runtime. Malformed request IDs will cause an exception, while
unrecognized request IDs be ignored. This option may not be combined with
any filtering options such as startTime, endTime, offset, or minLogLevel.
majorVersionIds and moduleVersions is ignored. IDs that do not correspond to
a request log will be ignored. Logs will be returned in the order requested.
batchSize
specifies the internal batching strategy of the returned
Iterable<RequestLogs>
. Has no impact on the
result of the query.
Notes on usage:
The recommended way to instantiate a LogQuery
object is to
statically import LogQuery.Builder
.* and invoke a static
creation method followed by an instance mutator (if needed):
import static com.google.appengine.api.log.LogQuery.Builder.*; ... // All requests, including application logs. iter = logService.fetch(withIncludeAppLogs(true)); // All requests ending in the past day (or still running) with an info log or higher. Calendar cal = Calendar.getInstance(); cal.add(Calendar.DAY_OF_MONTH, -1); iter = logService.fetch(withEndTimeMillis(cal.time()) .includeIncomplete(true).minimumLogLevel(LogService.INFO));
Modifier and Type | Class and Description |
---|---|
static class |
LogQuery.Builder
Contains static creation methods for
LogQuery . |
Constructor and Description |
---|
LogQuery() |
Modifier and Type | Method and Description |
---|---|
LogQuery |
batchSize(int batchSize)
Sets the batch size.
|
LogQuery |
clone()
Makes a copy of a provided LogQuery.
|
LogQuery |
endTimeMillis(long endTimeMillis)
Sets the end time to a value in milliseconds.
|
LogQuery |
endTimeUsec(long endTimeUsec)
Sets the end time to a value in microseconds.
|
java.lang.Integer |
getBatchSize() |
java.lang.Long |
getEndTimeMillis() |
java.lang.Long |
getEndTimeUsec() |
java.lang.Boolean |
getIncludeAppLogs() |
java.lang.Boolean |
getIncludeIncomplete() |
java.util.List<java.lang.String> |
getMajorVersionIds() |
LogService.LogLevel |
getMinLogLevel() |
java.util.List< |
getModuleVersions() |
java.lang.String |
getOffset() |
java.util.List<java.lang.String> |
getRequestIds() |
java.util.List< |
getServerVersions()
Deprecated.
Use
getModuleVersions() instead. |
java.lang.Long |
getStartTimeMillis() |
java.lang.Long |
getStartTimeUsec() |
LogQuery |
includeAppLogs(boolean includeAppLogs)
Sets include application logs.
|
LogQuery |
includeIncomplete(boolean includeIncomplete)
Sets include incomplete.
|
LogQuery |
majorVersionIds(java.util.List<java.lang.String> versionIds)
Sets the major version identifiers to query.
|
LogQuery |
minLogLevel(LogService.LogLevel minLogLevel)
Sets the minimum log level.
|
LogQuery |
moduleVersions(java.util.List<
Sets the module and version identifiers to query.
|
LogQuery |
offset(java.lang.String offset)
Sets the offset.
|
LogQuery |
requestIds(java.util.List<java.lang.String> requestIds)
Sets the list of request ids to query.
|
LogQuery |
serverVersions(java.util.List<
Deprecated.
Use
moduleVersions instead. |
LogQuery |
startTimeMillis(long startTimeMillis)
Sets the start time to a value in milliseconds.
|
LogQuery |
startTimeUsec(long startTimeUsec)
Sets the start time to a value in microseconds.
|
public LogQuery clone()
clone
in class java.lang.Object
public LogQuery offset(java.lang.String offset)
offset
- The offset to set.this
(for chaining)public LogQuery startTimeMillis(long startTimeMillis)
startTimeMillis
- The start time to set, in milliseconds.this
(for chaining)public LogQuery startTimeUsec(long startTimeUsec)
startTimeUsec
- The start time to set, in microseconds.this
(for chaining)public LogQuery endTimeMillis(long endTimeMillis)
endTimeMillis
- The end time to set, in milliseconds.this
(for chaining)public LogQuery endTimeUsec(long endTimeUsec)
endTimeUsec
- The end time to set, in microseconds.this
(for chaining)public LogQuery batchSize(int batchSize)
batchSize
- The batch size to set. Must be greater than 0.this
(for chaining)public LogQuery minLogLevel(LogService.LogLevel minLogLevel)
minLogLevel
- The minimum log level to set.this
(for chaining)public LogQuery includeIncomplete(boolean includeIncomplete)
includeIncomplete
- The value to set.this
(for chaining)public LogQuery includeAppLogs(boolean includeAppLogs)
includeAppLogs
- The value to set.this
(for chaining)public LogQuery majorVersionIds(java.util.List<java.lang.String> versionIds)
versionIds
- The major version identifier list to set.this
(for chaining)public LogQuery moduleVersions(java.util.List<> moduleVersions)
moduleVersions
- The list of Modules and Versions to set.this
(for chaining)@Deprecated public LogQuery serverVersions(java.util.List<> serverVersions)
moduleVersions
instead.serverVersions
- The list of Modules and Versions to set.this
(for chaining)public LogQuery requestIds(java.util.List<java.lang.String> requestIds)
requestIds
- The request id list to set.this
(for chaining)public java.lang.String getOffset()
null
if none was provided.public java.lang.Integer getBatchSize()
null
if none was provided.public java.lang.Long getEndTimeMillis()
null
if none was provided.public java.lang.Long getEndTimeUsec()
null
if none was provided.public java.lang.Boolean getIncludeAppLogs()
public java.lang.Boolean getIncludeIncomplete()
public LogService.LogLevel getMinLogLevel()
null
if none was provided.public java.lang.Long getStartTimeMillis()
null
if none was provided.public java.lang.Long getStartTimeUsec()
null
if none was provided.public java.util.List<java.lang.String> getMajorVersionIds()
@Deprecated public java.util.List<> getServerVersions()
getModuleVersions()
instead.public java.util.List<> getModuleVersions()
public java.util.List<java.lang.String> getRequestIds()
null
if none were set.