简体   繁体   中英

GCP Compute Engine API keep requesting

Checking the APIs & Services dashboard, it always shows the Compute Engine API requesting even when I disabled the Compute Engine API.

Why? And is it normal?

When I disabled the Compute Engine API, it is still requesting but having 100% error as picture(I enabled it on Sep22).

I am not using the Compute Engine now, should I disabled it?

在此处输入图像描述

There are nothing about Compute Engine on Logs Viewer, as I don even have VM instances.

I can only see there are many Traffic by API method since enabled.

It seem to come from "List requests", but I don know what is it and why it keep requesting?

在此处输入图像描述 ... 在此处输入图像描述 ... 在此处输入图像描述

The Compute Engine service (compute.googleapis.com) is a dependency for many other Google Cloud services so it's possible this is why you continue to see traffic to this API.

You can enumerate your services:

gcloud services list \
--enabled \
--project=${PROJECT}

You can disable the Compute Engine service but be careful because this will break dependencies:

gcloud services disable compute.googleapis.com \
--project=${PROJECT}

If you do this then rerun the list command, compute.googleapis.com should no longer be listed as enabled.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM