3collect Metrics From Exporters Using The Managed Service For Prometheus
3collect Metrics From Exporters Using The Managed Service For Prometheus
GSP1026
Overview
In this lab, you will use Managed Service for Prometheus to collect metrics from other
infrastructure sources via exporters.
Objectives
3. Build the GMP binary locally and deploy to the GKE instance
Read these instructions. Labs are timed and you cannot pause them. The timer, which starts when
you click Start Lab, shows how long Google Cloud resources will be made available to you.
This hands-on lab lets you do the lab activities yourself in a real cloud environment, not in a
simulation or demo environment. It does so by giving you new, temporary credentials that you use
to sign in and access Google Cloud for the duration of the lab.
Note: Use an Incognito or private browser window to run this lab. This prevents any conflicts
between your personal account and the Student account, which may cause extra charges incurred
to your personal account.
Time to complete the lab---remember, once you start, you cannot pause a lab.
Note: If you already have your own personal Google Cloud account or project, do not use it for this
lab to avoid extra charges to your account.
How to start your lab and sign in to the Google Cloud console
1. Click the Start Lab button. If you need to pay for the lab, a pop-up opens for you to select
your payment method. On the left is the Lab Details panel with the following:
Time remaining
The temporary credentials that you must use for this lab
2. Click Open Google Cloud console (or right-click and select Open Link in Incognito
Window if you are running the Chrome browser).
The lab spins up resources, and then opens another tab that shows the Sign in page.
Note: If you see the Choose an account dialog, click Use Another Account.
3. If necessary, copy the Username below and paste it into the Sign in dialog.
Copied!
content_copy
You can also find the Username in the Lab Details panel.
4. Click Next.
5. Copy the Password below and paste it into the Welcome dialog.
pjOs2YaZ9J1j
Copied!
content_copy
You can also find the Password in the Lab Details panel.
6. Click Next.
Important: You must use the credentials the lab provides you. Do not use your Google Cloud
account credentials.Note: Using your own Google Cloud account for this lab may incur extra
charges.
After a few moments, the Google Cloud console opens in this tab.
Note: To view a menu with a list of Google Cloud products and services, click the Navigation
menu at the top-
left.
Cloud Shell is a virtual machine that is loaded with development tools. It offers a persistent 5GB
home directory and runs on the Google Cloud. Cloud Shell provides command-line access to your
Google Cloud resources.
1. Click Activate Cloud Shell at the top of the Google Cloud console.
When you are connected, you are already authenticated, and the project is set to
your Project_ID, qwiklabs-gcp-04-82e6165c7a1b. The output contains a line that declares
the Project_ID for this session:
gcloud is the command-line tool for Google Cloud. It comes pre-installed on Cloud Shell and
supports tab-completion.
2. (Optional) You can list the active account name with this command:
Copied!
content_copy
3. Click Authorize.
Output:
ACTIVE: *
ACCOUNT: [email protected]
Copied!
content_copy
Output:
[core]
project = qwiklabs-gcp-04-82e6165c7a1b
Note: For full documentation of gcloud, in Google Cloud, refer to the gcloud CLI overview guide.
gcloud beta container clusters create gmp-cluster --num-nodes=1 --zone europe-west1-c --enable-
managed-prometheus
Copied!
content_copy
Copied!
content_copy
Create the gmp-test Kubernetes namespace for resources you create as part of the
example application:
Copied!
content_copy
Assessment Completed!
Check my progress
Assessment Completed!
The managed service provides a manifest for an example application that emits Prometheus
metrics on its metrics port. The application uses three replicas.
To deploy the example application, run the following command:
Copied!
content_copy
To ingest the metric data emitted by the example application, you use target scraping. Target
scraping and metrics ingestion are configured using Kubernetes custom resources. The managed
service uses PodMonitoring custom resources (CRs).
A PodMonitoring CR scrapes targets only in the namespace the CR is deployed in. To scrape targets
in multiple namespaces, deploy the same PodMonitoring CR in each namespace. You can verify the
PodMonitoring resource is installed in the intended namespace by running kubectl get
podmonitoring -A.
For reference documentation about all the Managed Service for Prometheus CRs, see
the prometheus-engine/doc/api reference.
apiVersion: monitoring.googleapis.com/v1alpha1
kind: PodMonitoring
metadata:
name: prom-example
spec:
selector:
matchLabels:
app: prom-example
endpoints:
- port: metrics
interval: 30s
Copied!
content_copy
To apply this resource, run the following command:
Copied!
content_copy
To configure horizontal collection that applies to a range of pods across all namespaces, use
the ClusterPodMonitoring resource. The ClusterPodMonitoring resource provides the same
interface as the PodMonitoring resource but does not limit discovered pods to a given namespace.
To query the metrics ingested by the example application, see Query data from the
Prometheus service.
To learn about filtering exported metrics and adapting your prom-operator resources, see
Additional topics for managed collection.
Copied!
content_copy
Copied!
content_copy
wget https://storage.googleapis.com/kochasoft/gsp1026/prometheus
Copied!
content_copy
Copied!
content_copy
Task 6. Run the prometheus binary
Copied!
content_copy
2. Save your zone to a variable. These values will be used when running your promtheus
binary.
export ZONE=europe-west1-c
Copied!
content_copy
./prometheus \
--config.file=documentation/examples/prometheus.yml --export.label.project-id=$PROJECT_ID --
export.label.location=$ZONE
Copied!
content_copy
After the prometheus binary begins you should be able to go to managed prometheus in the
Console UI and run a PromQL query “up” to see the prometheus binary is available (will show
localhost running one as the instance name).
wget https://github.com/prometheus/node_exporter/releases/download/v1.3.1/node_exporter-
1.3.1.linux-amd64.tar.gz
Copied!
content_copy
Copied!
content_copy
cd node_exporter-1.3.1.linux-amd64
Copied!
content_copy
./node_exporter
Copied!
content_copy
Note: The port that the node_exporter tool is running on you will use to modify the config of
prometheus on the next few steps.
You should see output like this indicating that the Node Exporter is now running and exposing
metrics on port 9100:
1. Stop the running prometheus binary in the 1st tab of Cloud Shell and have a new config file
which will take the metrics from node exporter:
vi config.yaml
Copied!
content_copy
global:
scrape_interval: 15s
scrape_configs:
- job_name: node
static_configs:
- targets: ['localhost:9100']
Copied!
content_copy
Copied!
content_copy
Copied!
content_copy
Copied!
content_copy
Copied!
content_copy
Assessment Completed!
Check my progress
Assessment Completed!
4. Re-run prometheus pointing to the new configuration file by running the command below:
Copied!
content_copy
Use the following stat from the exporter to see its count in a PromQL query.
Write any query in the PromQL query Editor prefixed with “node_”. This should bring up an input
list of metrics you can select to visualize in the graphical editor.
Try selecting other metrics that appear to view the data exported.
Congratulations!
In this lab you deployed a GKE instance and configured node-exporter. You then configured the
GMP binary to ingest metrics from node-exporter and viewed the metrics.
You can read more about Google cloud Managed Service for Prometheus.
...helps you make the most of Google Cloud technologies. Our classes include technical skills and
best practices to help you get up to speed quickly and continue your learning journey. We offer
fundamental to advanced level training, with on-demand, live, and virtual options to suit your busy
schedule. Certifications help you validate and prove your skill and expertise in Google Cloud
technologies.