Monitor a Compute Engine virtual machine

This document shows you how to monitor an Apache Web Server installed on a Compute Engine virtual machine (VM) instance.

If you want to monitor an Amazon EC2 VM instance, see the quickstart Getting started with AWS monitoring.

In this quickstart, you do the following:

  1. Create a Compute Engine VM instance.
  2. Install an Apache Web Server.
  3. Install and configure the Ops Agent for the Apache Web Server.
  4. Generate traffic and view metrics on the predefined Apache dashboard.
  5. Create an alerting policy.
  6. Clean up.

Before you begin

Some of the steps in this document might not work correctly if your organization applies constraints to your Google Cloud environment. In that case, you might not be able to complete tasks like creating public IP addresses or service account keys. If you make a request that returns an error about constraints, see how to Develop applications in a constrained Google Cloud environment.

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

  1. Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
  2. In the Google Cloud console, on the project selector page, select or create a Google Cloud project.

    Go to project selector

  3. Make sure that billing is enabled for your Google Cloud project. Learn how to check if billing is enabled on a project.

  4. In the Google Cloud console, on the project selector page, select or create a Google Cloud project.

    Go to project selector

  5. Make sure that billing is enabled for your Google Cloud project. Learn how to check if billing is enabled on a project.

  6. If you have an email notification channel configured, then skip this step.

    To set up an email notification channel, do the following:

    1. In the Google Cloud console, select Cloud Monitoring or click the following button:

      Go to Monitoring
    2. Select Alerting.
    3. Click Edit notification channels.
    4. In the Email section, click Add new and complete the dialog.

Create a Compute Engine VM instance

We recommend that you create a new Compute Engine VM instance for this quickstart because you install and configure software.

  1. In the Google Cloud console, go to Compute and then select Compute Engine:

    Go to Compute Engine

  2. To create a VM instance, click Create instance.

  3. Fill in the fields for your instance as follows:

    • In the Name field, enter quickstart-vm.
    • In the Machine type field, select Small.
    • Ensure the Boot disk is configured for Debian GNU/Linux.
    • In the Firewall field, select both Allow HTTP traffic and Allow HTTPS traffic.

    Leave the rest of the fields at their default values.

  4. Click Create. When your VM is ready, it appears in the list of instances in the Instances tab.

Install an Apache Web Server

To deploy an Apache Web Server on your Compute Engine VM instance, do the following:

  1. To open a terminal to your instance, in the Connect column, click SSH.

  2. To update the package lists on your instance, run the following command:

    sudo apt-get update
    
  3. To install an Apache2 HTTP Server, run the following command:

    sudo apt-get install apache2 php7.0
    
  4. Open your browser and connect to your Apache2 HTTP server by using the URL http://EXTERNAL_IP, where EXTERNAL_IP is the external IP address of your VM. You can find this address in the External IP column of your VM instance.

    You see the Apache2 default page:

    Display the Apache2 default page.

Install and configure the Ops Agent

To collect logs and metrics from your Apache Web Server, install the Ops Agent by using the terminal:

  1. To open a terminal to your VM instance, in the Connect column, click SSH.

  2. To install the Ops Agent, run the following command:

       curl -sSO https://dl.google.com/cloudagents/add-google-cloud-ops-agent-repo.sh
       sudo bash add-google-cloud-ops-agent-repo.sh --also-install
    

    You see google-cloud-ops-agent installation succeeded.

  3. Copy the following command, then paste it into the terminal:

    # Configures Ops Agent to collect telemetry from the app and restart Ops Agent.
    
    set -e
    
    # Create a back up of the existing file so existing configurations are not lost.
    sudo cp /etc/google-cloud-ops-agent/config.yaml /etc/google-cloud-ops-agent/config.yaml.bak
    
    # Configure the Ops Agent.
    sudo tee /etc/google-cloud-ops-agent/config.yaml > /dev/null << EOF
    metrics:
      receivers:
        apache:
          type: apache
      service:
        pipelines:
          apache:
            receivers:
              - apache
    logging:
      receivers:
        apache_access:
          type: apache_access
        apache_error:
          type: apache_error
      service:
        pipelines:
          apache:
            receivers:
              - apache_access
              - apache_error
    EOF
    
    sudo service google-cloud-ops-agent restart
    sleep 60
    

    The previous command creates the configuration to collect and ingest logs and metrics from the Apache Web Server. For more information about ingesting logs from the Apache Web Server, see Configure the Ops Agent for Apache Web Server.

Generate traffic and view metrics

Monitoring dashboards let you view and analyze metrics related to your services. In this quickstart, you generate metrics on your Apache Web Server and view metric data on the automatically created Apache GCE Overview dashboard.

To generate metrics on your Apache Web Server, do the following:

  1. In the Google Cloud console, go to Compute Engine:

    Go to Compute Engine

  2. In the Connect column, click SSH to open a terminal to your VM instance.

  3. To generate traffic on your Apache Web Server, run the following command:

    timeout 120 bash -c -- 'while true; do curl localhost; sleep $((RANDOM % 4)) ; done'
    

    The previous command generates traffic by making a request to the Apache Web Server every four seconds.

To view the Apache GCE Overview dashboard, do the following:

  1. In the Google Cloud console, select Monitoring or click the following button:
    Go to Monitoring

  2. In the navigation pane, select Dashboards.

  3. In All Dashboards, select the Apache GCE Overview dashboard. The dashboard opens.

    In the dashboard, there are several charts that contain information about your Apache and Compute Engine integration:

    Example of the Apache GCE Overview dashboard.

Create an alerting policy

To create an alerting policy that monitors a metric and sends an email notification when the traffic rate on your Apache Web Server exceeds 4 KiB/s, do the following:

  1. In the Google Cloud console, select Monitoring or click the following button:
    Go to Monitoring

  2. In the navigation pane, select Alerting and then click Create policy.

  3. Select the time series to be monitored:

    1. Click Select a metric and enter VM instance into the filter bar.

    2. In the Active metric categories list, select Apache.

    3. In the Active metrics list, select workload/apache.traffic.

    The chart for Apache traffic is shown.

  4. In the Transform data section, select the following values:

    1. Rolling window: 1 min

    2. Rolling window function: rate

  5. In the Configure alert trigger section, select the following values and click Next:

    1. Alert trigger: Any time series violations

    2. Threshold position: Above threshold

    3. Threshold value: 4000

  6. In the Configure notifications and finalize alert section, select the following values:

    1. Notification channels: The email you want to receive alerts to.

    2. Incident autoclose duration: 30 min

    3. Name the alert policy: Apache traffic above threshold

  7. Click Create policy. Your alerting policy is now active.

Test the alerting policy

To test the alerting policy you just created, do the following:

  1. In the Google Cloud console, go to Compute and then select Compute Engine:

    Go to Compute Engine

  2. In the Connect column, click SSH to open a terminal to your VM instance.

  3. In the terminal, enter the following command:

    timeout 120 bash -c -- 'while true; do curl localhost; sleep $((RANDOM % 4)) ; done'
    

    The previous command generates traffic in your Apache Web Server.

    After the traffic rate threshold value of 4 KiB/s is exceeded in your Apache Web Server, an email notification is sent. It might take several minutes for this process to complete.

The email notification you receive looks similar to the following:

Email notification for Apache traffic alert policy.

Clean up

To avoid incurring charges to your Google Cloud account for the resources used on this page, follow these steps.

  • If you created a new Google Cloud project for this quickstart, then delete the Google Cloud project:

    1. In the Google Cloud console, go to the Manage resources page.

      Go to Manage resources

    2. In the project list, select the project that you want to delete, and then click Delete.
    3. In the dialog, type the project ID, and then click Shut down to delete the project.

  • If you created a new VM in an existing project, then delete the VM instance:

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

      Go to VM instances

    2. Select the checkbox for the instance that you want to delete.
    3. To delete the instance, click More actions, click Delete, and then follow the instructions.

  • If you used an existing VM instance for this quickstart, then uninstall the Ops Agent:

    1. To uninstall the Ops Agent, open the terminal and run the following command:

      sudo bash add-google-cloud-ops-agent-repo.sh --uninstall
      

What's next