LogService allows callers to request the logs for an application
using supplied filters. Logs are returned in an Iterable that yields
RequestLogs, which contain request-level information and optionally
AppLogLine objects containing the application logs from the request.
Static Fields
DEFAULT_ITEMS_PER_FETCH
publicstaticfinalintDEFAULT_ITEMS_PER_FETCH
The number of items that each underlying RPC call will retrieve by default.
A LogQuery object that contains the various query parameters
that should be used in the LogReadRequest. If versions and majorVersionIds
are both empty, fetch will retrieve logs for the current running version.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-05 UTC."],[[["`LogService` allows users to retrieve application logs using specified filters."],["Logs are returned as an `Iterable` of `RequestLogs`, which can include `AppLogLine` objects for application-specific logs."],["`DEFAULT_ITEMS_PER_FETCH` defines the number of log items retrieved per RPC call by default."],["The `fetch(LogQuery query)` method retrieves logs based on the provided `LogQuery` parameters, and acts synchronously."],["The `fetch` method will get logs for the currently running version if the `versions` and `majorVersionIds` fields are empty."]]],[]]