Google Cloud Platform Administration
eBook - ePub

Google Cloud Platform Administration

Design highly available, scalable, and secure cloud solutions on GCP

  1. 230 pages
  2. English
  3. ePUB (mobile friendly)
  4. Available on iOS & Android
eBook - ePub

Google Cloud Platform Administration

Design highly available, scalable, and secure cloud solutions on GCP

About this book

Make the most of GCP's offerings to manage your data center workload and optimize deployments

Key Features

  • Discover new techniques to administer, manage, and deploy applications on GCP
  • Understand effective solutions for storing, retrieving, and deploying your container images
  • Explore various offerings of GCP for operations and security

Book Description

On-premise data centers are costly to manage. If you need a data center but don't want to deal with a physical one, Google Cloud Platform (GCP) is the solution. With GCP, you can build, test, and deploy applications on Google's infrastructure.

Google Cloud Platform Administration begins with GCP fundamentals, with the help of which you will deploy your first app and gain an understanding of Google Cloud architecture and services. Furthermore, you will learn how to manage Compute, networking, and storage resources. As you make your way through the book, you will learn how to track and manage GCP's usage, monitoring, and billing access control. You will also be able to manage your GCP's access and permissions. In the concluding chapters, you will explore a list of different developer tools for managing and interacting with the GCP platform.

By the end of this book, you will have learned how to effectively deploy workloads on GCP.

What you will learn

  • Understand all GCP Compute components
  • Deploy and manage multiple GCP storage options
  • Manage and utilize the networking resources offered by GCP
  • Explore the functionalities and features of the GCP Container
  • Understand the workings of GCP operations such as monitoring and error reporting
  • Discover an immune GCP using its identity and security options

Who this book is for

Google Cloud Platform Administration is for administrators, cloud architects, and engineers who want to leverage the upcoming Google Cloud Platform. Some basic understanding of cloud computing will be useful.

Frequently asked questions

Yes, you can cancel anytime from the Subscription tab in your account settings on the Perlego website. Your subscription will stay active until the end of your current billing period. Learn how to cancel your subscription.
No, books cannot be downloaded as external files, such as PDFs, for use outside of Perlego. However, you can download books within the Perlego app for offline reading on mobile or tablet. Learn more here.
Perlego offers two plans: Essential and Complete
  • Essential is ideal for learners and professionals who enjoy exploring a wide range of subjects. Access the Essential Library with 800,000+ trusted titles and best-sellers across business, personal growth, and the humanities. Includes unlimited reading time and Standard Read Aloud voice.
  • Complete: Perfect for advanced learners and researchers needing full, unrestricted access. Unlock 1.4M+ books across hundreds of subjects, including academic and specialized titles. The Complete Plan also includes advanced features like Premium Read Aloud and Research Assistant.
Both plans are available with monthly, semester, or annual billing cycles.
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Yes! You can use the Perlego app on both iOS or Android devices to read anytime, anywhere — even offline. Perfect for commutes or when you’re on the go.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app.
Yes, you can access Google Cloud Platform Administration by Ranjit Singh Thakurratan in PDF and/or ePUB format, as well as other popular books in Computer Science & Cloud Computing. We have over one million books available in our catalogue for you to explore.

Information

Google Cloud Platform Operations

In this chapter, we will learn about the Stackdriver suite of products that allows us to manage and debug our application. Stackdriver provides you with debug, enhanced logging, error reporting, and monitoring services for your applications. We will start with Stackdriver monitoring, which lets you monitor your applications deployed in the cloud. We will then look into its real-time logging and error reporting capabilities. We will next look at Stackdriver's application platform management (APM) capabilities by learning about its debugger, trace, and profiler features.
In this chapter, we will cover the following topics:
  • Stackdriver monitoring and logging
  • Stackdriver error reporting
  • Stackdriver debugger
  • Strackdriver profiler
  • Stackdriver Trace

Stackdriver monitoring and logging

Stackdriver monitoring provides you the ability to monitor your applications deployed on GCP. Stackdriver also allows you to monitor your applications deployed in AWS as well. You can monitor your applications for performance and uptime, and all these metrics and events are collected and stored by Stackdriver. Stackdriver monitoring also generates dashboards for easy visual consumption of the data. The feature also integrates with alerting so timely alerts can be sent out for any event. Remember that monitoring and logging are closely integrated.
A better way to explore Stackdriver monitoring is to set it up for a compute engine instance. We will discuss its concepts as we go through the setup.
I will be following Google's official documentation example here, so it will be easier for you to relate what we do here with the official guide.
Before we begin, let's review all the steps in this exercise:
  1. Create a compute engine instance
  2. Install an Apache HTTP server
  3. Create a Stackdriver account and install agents
  4. Create checks and policies
  5. Create dashboards and alerts
  6. Review logs
As with every other exercise we have done before, let's begin by creating a project first. If you don't already have one, go ahead and create a project called stackdriver-test-project:
$ gcloud projects create stackdriver-test-123 --name stackdriver-test-project Create in progress for [https://cloudresourcemanager.googleapis.com/v1/projects/stackdriver-test-123]. Waiting for [operations/cp.7718643467432378132] to finish...done. $ gcloud projects list PROJECT_ID NAME PROJECT_NUMBER kubecluster-206421 KubeCluster 944435304139 premium-bearing-206421 My First Project 766565060122 stackdriver-test-123 stackdriver-test-project 968775468325 
Project IDs and project numbers are unique. Your IDs and numbers will differ from what you see here.
Now that we have the project created, let's enable billing for it. Before we do that, let's make sure that we set our project to stackdriver-test-project:
$ gcloud config list [core] account = [email protected] disable_usage_reporting = True project = kubecluster-206421 $ gcloud config unset project Unset property [core/project]. $ gcloud config list [core] account = [email protected] disable_usage_reporting = True Your active configuration is: [abcd] $ gcloud config set project stackdriver-test-123 Updated property [core/project]. $ gcloud config list [core] account = hidden@g...

Table of contents

  1. Title Page
  2. Copyright and Credits
  3. Dedication
  4. Packt Upsell
  5. Contributors
  6. Preface
  7. Introduction to Google Cloud Platform
  8. Google Cloud Platform Compute
  9. Google Cloud Platform Storage
  10. Google Cloud Platform Networking
  11. Google Cloud Platform Containers
  12. Google Cloud Platform Operations
  13. Google Cloud Platform Identity and Security
  14. Google Cloud Platform Billing
  15. Google Cloud Platform Tools
  16. Other Books You May Enjoy