Viewing serial port output


A virtual machine (VM) instance has four virtual serial ports. The instance's operating system, BIOS, and other system-level entities often write output to the serial ports, which makes serial port output useful for troubleshooting crashes, failed boots, startup issues, or shutdown issues.

This page describes methods to view serial port output, including using Cloud Logging to retain serial port output even after an instance is stopped or deleted. If you need to send commands to a serial port while an instance is running, see Interacting with the serial console.

Serial port output is accessible through the Google Cloud console, the gcloud CLI, and REST, but only while the VM instance is running. Logs are limited to the most recent 1 MB of output per port.

If you enable serial port output logging, Cloud Logging provides the first 50 gibibytes (GiB) per month of logging for free and retains logs for 30 days.

Before you begin

  • If you want to log serial port output in Cloud Logging, familiarize yourself with Cloud Logging.
  • If you haven't already, set up authentication. Authentication is the process by which your identity is verified for access to Google Cloud services and APIs. To run code or samples from a local development environment, you can authenticate to Compute Engine as follows.

    Select the tab for how you plan to use the samples on this page:

    Console

    When you use the Google Cloud console to access Google Cloud services and APIs, you don't need to set up authentication.

    gcloud

    1. Install the Google Cloud CLI, then initialize it by running the following command:

      gcloud init
    2. Set a default region and zone.

    REST

    To use the REST API samples on this page in a local development environment, you use the credentials you provide to the gcloud CLI.

      Install the Google Cloud CLI, then initialize it by running the following command:

      gcloud init

Enabling and disabling serial port output logging

You can control whether your instances send serial port output to Cloud Logging by setting project- or instance-level metadata. You can also disable the feature for all of the users in your organization by setting an organization policy.

Setting project and instance metadata

By default, serial port output logging to Cloud Logging is disabled. If serial port output logging to Cloud Logging is not constrained for your organization, then you can enable or disable it for projects and for individual VM instances by setting the serial-port-logging-enable metadata entry to true or false.

If you set a project-wide metadata entry, all VM instances in the project inherit that setting implicitly. If you set an instance metadata entry, the metadata entry is enabled for that VM only, regardless of the project setting.

You can set a metadata entry by using the Google Cloud console, the gcloud CLI, or the Compute Engine API. For more information, see Setting custom metadata.

For example, the following gcloud CLI command enables serial port output logging to Cloud Logging for your project:

gcloud compute project-info add-metadata \
    --metadata serial-port-logging-enable=true

Similarly, the following gcloud CLI command enables serial port output logging to Cloud Logging for a specific instance instead:

gcloud compute instances add-metadata INSTANCE_NAME \
    --metadata serial-port-logging-enable=true

To disable serial port output logging to Cloud Logging, set serial-port-logging-enable to false:

gcloud compute instances add-metadata INSTANCE_NAME \
    --metadata serial-port-logging-enable=false

Exclusion filters

From within Cloud Logging, you can create an exclusion filter to remove specific serial port entries from the Logs Explorer. For example, with a project-wide metadata entry that is set to serial-port-logging-enable=true, you can disable serial port output logging for specific VM instances by using an advanced filter:

logName = "projects/PROJECT_ID/logs/serialconsole.googleapis.com%2Fserial_port_1_output"
resource.type = "gce_instance"
resource.labels.instance_id != "INSTANCE_1_ID"
resource.labels.instance_id != "INSTANCE_2_ID"

Setting an organization policy

You can disable serial port output logging to Cloud Logging for your entire organization by setting an Organization Policy, which constrains certain configurations of Google Cloud resources. Specifically, set the following boolean constraint: constraints/compute.disableSerialPortLogging. For more information, see Creating and managing organization policies.

Disabling serial port logging by setting constraints/compute.disableSerialPortLogging to true is not retroactive. Existing VM instances with a metadata entry that enables serial port logging to Cloud Logging continue to log to Cloud Logging unless you reset the metadata for those instances.

After setting this organization constraint to true, you cannot set instance or project metadata to enable serial port output logging to Cloud Logging for any instances within the organization.

Viewing serial port output

Console

  1. In the Google Cloud console, go to the VM instances page.

    Go to the VM instances page

  2. Select the VM instance for which you want to view serial port output.

  3. Under Logs, click Serial port 1, 2, 3, or 4. System-level entities typically use the first serial port (port 1), which is also known as the serial console.

gcloud

Use the gcloud compute instances get-serial-port-output command.

gcloud compute instances get-serial-port-output INSTANCE_NAME \
  --port PORT \
  --start START \
  --zone ZONE

Replace the following:

  • INSTANCE_NAME: the name of the instance.
  • PORT: the number of the port (1, 2, 3, or 4) for which you want to view output. System-level entities typically use the first serial port (port 1), which is also known as the serial console. By default, the output of the first serial port is returned.
  • START: the byte index (zero-based) of the first byte you want returned. Use this flag if you want to continue getting the output from a previous request that was too long to return in one attempt.
  • ZONE: the zone of your instance.

REST

In the API, create a get request to the instances.getSerialPortOutput method.

GET https://compute.googleapis.com/compute/projects/PROJECT_ID/zones/ZONE/instances/INSTANCE_NAME/serialPort

Cloud Logging

  1. Enable serial port logging to Cloud Logging.
  2. Go to the VM instances page.

    Go to the VM instances page

  3. Select the VM instance for which you want to view startup agent logs.

  4. Under Logs, click Cloud Logging to view Cloud Logging logs.

    Click Cloud Logging to view Cloud Logging
logs.

  5. Expand the All logs drop-down menu and select the serial port output that you want to see. System-level entities typically use the first serial port (port 1), which is also known as the serial console. If a port does not appear in the drop-down menu, it has no available output.

  6. Optionally, expand the Any log level drop-down menu to mute logs that are below the severity level that you want to see. For example, if you select the "Info" log level, you will mute "Debug" log entries. "Debug" entries are typically used only by the BIOS at boot time.

For more information, including information about filtering, see Using the Logs Explorer.

Handling non-UTF8 characters

Serial port output is escaped by using the open source Abseil C++ library's CHexEscape() method, so non-UTF8 characters are encoded as hex strings. You can use the corresponding CUnescape() method to get the exact output that was sent to the serial port.

Common serial port errors

The following are examples of common errors you might encounter in serial port output.

Error configuring IPv6

The following error might occur in OS journal logs when IPv6 isn't configured:

ERROR addresses.go:301 Error configuring IPv6: Internet Systems Consortium DHCP Client 4.2.5

Ignore this error. This error doesn't affect your VM.