Write and query log entries with the gcloud CLI

This document introduces you to some of the capabilities of Cloud Logging and shows you how to do the following:

  • Write log entries by using the Google Cloud CLI.
  • List log entries by using the gcloud CLI.
  • List log entries by using the Logging API.
  • View and query log entries by using the Logs Explorer.

Before you begin

You must have a Trusted Cloud project with billing enabled to complete this quickstart. If you don't have a Trusted Cloud project, or if you don't have billing enabled for your Trusted Cloud project, then do the following:

  1. Install the Google Cloud CLI.

  2. Configure the gcloud CLI to use your federated identity.

    For more information, see Sign in to the gcloud CLI with your federated identity.

  3. To initialize the gcloud CLI, run the following command:

    gcloud init
  4. Create or select a Trusted Cloud project.

    • Create a Trusted Cloud project:

      gcloud projects create PROJECT_ID

      Replace PROJECT_ID with a name for the Trusted Cloud project you are creating.

    • Select the Trusted Cloud project that you created:

      gcloud config set project PROJECT_ID

      Replace PROJECT_ID with your Trusted Cloud project name.

  5. Make sure that billing is enabled for your Trusted Cloud project.

Write log entries by using the gcloud CLI

Logging supports log entries with structured and unstructured data. Structured data consists of a JSON data structure; for example, {"weather": "partly cloudy"}. Unstructured data is a string of characters; for example, "A simple entry".

In the next steps, you use the gcloud CLI to write a log entry with unstructured data and a log entry with structured data. The gcloud CLI provide a command-line interface to the Cloud Logging API.

  1. Write a log entry with unstructured data to the log my-test-log, run the gcloud logging write command:

    gcloud logging write my-test-log "A simple entry."
    

    After the command completes, you see the message: Created log entry.

  2. Write a log entry with structured data to the log my-test-log:

    gcloud logging write --payload-type=json my-test-log '{ "message": "My second entry", "weather": "partly cloudy"}'
    

    When you write a log entry with structured data, you must include --payload-type=json. If you omit this field, then Logging interprets the payload as unstructured data.

If the log my-test-log doesn't exist, then Logging creates the log when the log entry is received.

List log entries by using the gcloud CLI

You can retrieve log entries from Logging and display them by using the gcloud CLI. For example, to retrieve and display the log entries with a resource type of global, run the following command:

gcloud logging read "resource.type=global"

The command returns a result similar to the following:

---
insertId: jpj9zjf73t1mn
jsonPayload:
  message: My second entry
  weather: partly cloudy
logName: projects/myloggingproject/logs/my-test-log
receiveTimestamp: '2018-11-01T18:39:31.114507977Z'
resource:
  labels:
    project_id: myloggingproject
  type: global
timestamp: '2018-11-01T18:39:31.114507977Z'
---
insertId: vd4m1if7h7u1a
logName: projects/myloggingproject/logs/my-test-log
receiveTimestamp: '2018-11-01T18:39:19.718100792Z'
resource:
  labels:
    project_id: myloggingproject
  type: global
textPayload: A simple entry
timestamp: '2018-11-01T18:39:19.718100792Z'

For information about reading logs, see the gcloud logging read reference documentation.

View log entries in the Logs Explorer

To view log entries in the Trusted Cloud console, you can use the Logs Explorer. Most Trusted Cloud projects store a large number of logs; you can select certain log entries by writing a query.

To view the log entries that you wrote using the Logs Explorer, do the following:

  1. In the Trusted Cloud console, go to the Logs Explorer page:

    Go to Logs Explorer

    If you use the search bar to find this page, then select the result whose subheading is Logging.

    Ensure your Trusted Cloud project is selected in the Trusted Cloud by S3NS navigation bar. If necessary, use the Trusted Cloud project drop-down list to select your Trusted Cloud project.

  2. In the Resource menu, select Global.

    If you don't see the Global menu option or if you don't see your log entries, then wait a few minutes and refresh the page. It can take a few minutes for Logging to receive log entries.

  3. To view the details of a log entry, click its Menu.

    The first log entry has its data stored in textPayload. The second log entry contains structured data that is stored in jsonPayload. The structured payload contains the keys message and weather.

For information about the data format of log entries, see the LogEntry type.

Query log entries in the Logs Explorer

You can query log entries by using the query editor and, with structured logs, by the key and value. For example, to display all log entries that contain the text simple, do the following:

  1. In the Trusted Cloud console, go to the Logs Explorer page:

    Go to Logs Explorer

    If you use the search bar to find this page, then select the result whose subheading is Logging.

  2. In the Resource menu, select Global.

  3. In the query editor, enter the string simple in quotation marks. The logs display shows only the log entry A simple entry.

  4. After you have viewed your log, remove the query string you added and click Run query. Both log entries reappear in the display.

To display all log entries with structured data that have a key of weather where the value field contains partly, do the following:

  1. The query editor contains the line resource.type="global". Enter the following command:

    jsonPayload.weather:partly
    
  2. Click Run query. The result is the single log entry My second entry.

Logs Explorer also offers saved, suggested, and recent queries. For more information about queries, see Build queries in the Logs Explorer.

For sample queries, see Sample queries using the Logs Explorer.

Troubleshooting

  • Typographical errors and unknown field names result in the gcloud CLI commands completing with invalid argument messages. For example, if you forget the period in resource.type, then it results in the error:

     ERROR: (gcloud.logging.read) INVALID_ARGUMENT: Field not found: 'resourcetype'.
    
  • When Cloud Logging hasn't been granted the necessary access permissions, the gcloud CLI commands complete with permission denied messages. For example, if a Compute Engine VM instance is configured with the default API settings, then the list command completes with a permission denied error:

     ERROR: (gcloud.logging.read) PERMISSION_DENIED: Request had insufficient authentication scopes.
    

    To fix this condition, modify your Compute Engine VM instance permissions to grant Cloud Logging read permission by doing the following:

    1. Go to the VM instance details page for your VM instance. Click Stop. This action might take a minute or two to complete.
    2. To modify the configuration, click Edit.
    3. Search for the header Cloud API access scopes, and click Details to display the settings for each API. Change the entry from Cloud Logging API to Full. Click Save.
    4. To restart your VM instance, click Start. After a few moments, your VM is ready to use.

Clean up

To avoid incurring charges to your Trusted Cloud account for the resources used on this page, delete the Trusted Cloud project with the resources.

  1. (Optional) To delete the log entries you created, run the following gcloud command:

    gcloud logging logs delete my-test-log
    

    If you don't delete your log entries, then they expire and are removed. For retention information, see Quotas & limits.

What's next