This document describes how to query and analyze your log data by using Log Analytics, which provides a SQL-based query interface. By using SQL, you can perform tasks like count the log entries with a field that match a pattern. Log Analytics provides a SQL editor and a menu-based system for building queries. To view your query results, you can use the tabular form, or you can visualize the data as a chart. You can save your charts to your custom dashboards.
You can query either a log view on a log bucket or an
analytics view. When you query a log view, the
schema corresponds to that of the LogEntry
data structure.
Because the creator of an analytics view determines the schema, one use
case for analytics views is to transform log data from the
LogEntry
format into a format that is more suitable for you.
Log Analytics doesn't deduplicate log entries, which might affect how you write your queries. Also, there are some restrictions when using Log Analytics. For more information about these topics, see the following documents:
- Troubleshoot: There are duplicate log entries in my Log Analytics results.
- Log Analytics: Restrictions.
About linked datasets
Log Analytics supports the creation of linked BigQuery datasets, which let BigQuery have read access to the underlying data. If you choose to create a linked dataset, then you can do the following:
- Join log entry data with other BigQuery datasets.
- Query log data from another service like the BigQuery Studio page or Looker Studio.
- Improve the performance of the queries that you run from the Log Analytics by running them on your BigQuery reserved slots.
- Create an alerting policy that monitors the result of a SQL query. For more information, see Monitor your SQL query results with an alerting policy.
This document doesn't describe how to create a linked dataset or how to configure the Log Analytics to run queries on reserved slots. If you are interested in those topics, then see Query a linked dataset in BigQuery.
Before you begin
This section describes steps that you must complete before you can use Log Analytics.
Configure log buckets
Ensure that your log buckets have been upgraded to use Log Analytics:
-
In the Google Cloud console, go to the Logs Storage page:
If you use the search bar to find this page, then select the result whose subheading is Logging.
- For each log bucket that has a log view that you want to query, ensure that the Log Analytics available column displays Open. If Upgrade is shown, then click Upgrade and complete the dialog.
Configure IAM roles and permissions
This section describes the IAM roles or permissions that are required to use Log Analytics:
-
To get the permissions that you need to use Log Analytics and query log views, ask your administrator to grant you the following IAM roles on your project:
-
To query the
_Required
and_Default
log buckets: Logs Viewer (roles/logging.viewer
) -
To query all log views in a project:
Logs View Accessor (
roles/logging.viewAccessor
)
You can restrict a principal to a specific log view either by adding an IAM condition to the Logs View Accessor role grant made at the project level, or by adding an IAM binding to the policy file of the log view. For more information, see Control access to a log view.
These are the same permissions that you need to view log entries on the Logs Explorer page. For information about additional roles that you need to query views on user-defined buckets or to query the
_AllLogs
view of the_Default
log bucket, see Cloud Logging roles. -
To query the
-
To get the permissions that you need to query analytics views, ask your administrator to grant you the Observability Analytics User (
roles/observability.analyticsUser
) IAM role on your project.
Query log data
This section describes the approaches that you can use to query your log data:
- Load a system-defined query, edit this query, and then run the query.
- Enter and run a custom query. For example, you might paste in a query you have or write one. Custom queries can include joins, nested queries, and other complex SQL statements. For examples, see Sample SQL queries.
- Build a query by making menu selections and then run that query. Log Analytics converts your selections into a SQL query, which you can both view and edit.
Load, edit, and run the system-defined query
-
In the Google Cloud console, go to the Log Analytics page:
If you use the search bar to find this page, then select the result whose subheading is Logging.
In the Views menu, go to the
Logs or Analytics Views section, and select the view that you want to query.To find the view to query, use the filter_list Filter bar or scroll through the list:
Log views are listed by
BUCKET_ID.LOG_VIEW_ID
, where these fields refer to the IDs of the log bucket and log view.Analytics views are listed by
LOCATION.ANALYTICS_VIEW_ID
, where these fields refer to the location and ID of an analytics view. Analytics views are in Public Preview.
Do one of the following:
To load a system-defined query that relies on the Query Builder, which lets you define the query with menu selections, make sure that the Query pane displays Query Builder. If a SQL editor is shown, then click tune Builder.
To load a system-defined query that extracts JSON values, then make sure that Query pane displays the SQL editor. If this pane displays Query Builder, then click code SQL.
In the Schema pane, select Query, and then click Overwrite.
The Query pane displays a system-defined query. If you selected the Query Builder mode but want to view the SQL query, click code SQL.
Optional: Modify the query.
To run the query, go to the toolbar and select Run Query.
Log Analytics presents the query results in a table. However, you can create a chart, and you can also save the table or chart to a custom dashboard. For more information, see Chart SQL query results.
If the toolbar displays Run in BigQuery, then you need to switch Log Analytics to use the default query engine. To make this change, in the toolbar of the Query pane, click settings Settings and then select Analytics (default).
Enter and run a custom query
To enter a SQL query, then do the following:
-
In the Google Cloud console, go to the Log Analytics page:
If you use the search bar to find this page, then select the result whose subheading is Logging.
In the Query pane, click the code SQL.
To specify a time range, we recommend that you use the time-range selector. If you add a
WHERE
clause that specifies thetimestamp
field, then that value overrides the setting in the time-range selector and that selector is disabled.For examples, see Sample SQL queries.
You can query log views or analytics views. Use the following format for the
FROM
clause:Log views:
FROM `PROJECT_ID.LOCATION.BUCKET_ID.LOG_VIEW_ID`
Analytics views:
FROM `analytics_view.PROJECT_ID.LOCATION.ANALYTICS_VIEW_ID`
The fields in the previous expressions have the following meaning:
- PROJECT_ID: The identifier of the project.
- LOCATION: The location of the log view or the analytics view.
- BUCKET_ID: The name or ID of the log bucket.
- LOG_VIEW_ID: The identifier of the log view, which is limited to 100 characters and can include only letters, digits, underscores, and hyphens.
- ANALYTICS_VIEW_ID: The ID of the analytics view, which is limited to 100 characters and can include only letters, digits, underscores, and hyphens.
If the query pane displays an error message that references the
FROM
statement, then the view can't be found. For information about how to resolve this failure, see ErrorFROM
clause must contain exactly one log view.To run the query, go to the toolbar and select Run Query.
Log Analytics presents the query results in a table. However, you can create a chart, and you can also save the table or chart to a custom dashboard. For more information, see Chart SQL query results.
If the toolbar displays Run in BigQuery, then you need to switch Log Analytics to use the default query engine. To make this change, in the toolbar of the Query pane, click settings Settings and then select Analytics (default).
Build, edit, and run a query
The Query Builder interface lets you build a query by making selections from menus. Log Analytics converts your selections into a SQL query, which you can view and edit. For example, you might start by using the Query Builder interface and then switch to the SQL editor to refine your query.
Log Analytics can always convert your menu-selections from the Query Builder interface into a SQL query. However, not all SQL queries can be represented by the Query Builder interface. For example, queries with joins can't be represented by this interface.
To build a query, do the following:
-
In the Google Cloud console, go to the Log Analytics page:
If you use the search bar to find this page, then select the result whose subheading is Logging.
If the Query pane displays a SQL editor, then select tune Builder, which opens the Query Builder pane.
Use the Source and Fields menus to select the view and the columns that appear in the result table. Your selections are mapped to the
FROM
andSELECT
clauses in the SQL query.Optional: Use the following menus to restrict or format the result table:
Search all fields: Search for matching strings. Your selections are mapped to the
WHERE
clause in the SQL query.Filters: Add filters when you want to restrict the query to spans that contain a specific attribute or span ID. The menu lists all available filter options. Your selections are mapped to the
WHERE
clause in the SQL query.Sort By: Set the columns to sort by, and whether the sort is ascending or descending. Your selections are mapped to the
ORDER BY
clause in the SQL query.Limit: Set the maximum number of rows in the result table. Your selections are mapped to the
LIMIT
clause in the SQL query.
To run the query, go to the toolbar and select Run Query.
Log Analytics presents the query results in a table. However, you can create a chart, and you can also save the table or chart to a custom dashboard. For more information, see Chart SQL query results.
If the toolbar displays Run in BigQuery, then you need to switch Log Analytics to use the default query engine. To make this change, in the toolbar of the Query pane, click settings Settings and then select Analytics (default).
Display the schema
The schema defines how the data is stored, which includes the fields and their
data types. This information is important to you because the schema determines
the fields you query and whether you need to cast fields to different data
types. For example, to write a query that computes the average latency of
HTTP requests, you need to know how to access the latency field and whether it
is stored as an integer like 100
or as a string like "100"
. If the latency
data is stored as a string, then the query must cast the value to a numeric
value before computing an average.
To identify the schema, do the following:
-
In the Google Cloud console, go to the Log Analytics page:
If you use the search bar to find this page, then select the result whose subheading is Logging.
In the Views menu, go to the
Logs or Analytics Views section, and select the view that you want to query.The Schema pane is updated. Log Analytics automatically infers the fields of a column when the data type is JSON. To view how often these inferred fields appear in your data, click more_vert Options and select View info and description.
For log views, the schema is fixed and corresponds to the
LogEntry
. For analytics views, you can modify the SQL query to change the schema.
What's next
- Learn about analytics views.
- Save and share a SQL query.
- Chart SQL query results.
- Sample SQL queries.
- Query a linked dataset in BigQuery.