Unable find vm instance

I'm sure that my account role is owner in this project, have all permission. 

It show two instance in observability page, but it can't show any instance in vm instance page.

Is there any way to manage it?

Larry3_0-1698373810480.png

Larry3_1-1698373992315.png

 

 

1 1 188
1 REPLY 1

Hi @Larry3 

Welcome to Google Cloud Community!

You may want to zoom in the data if the metrics monitoring is still updating or receiving data from the vm instances. If you want to verify list of instances on your project you may run the following command using cloud shell or cloud sdk in your machine.

 

gcloud compute instances list

 

For more information about gcloud compute command, you may look at this guide

You may also check the cloud logging to verify instances are created or deleted. you can use the following log explorer query.

Query created instances:

 

resource.type="gce_instance"  
resource.labels.project_id="project-id"
protoPayload.methodName="v1.compute.instances.insert"
severity>=DEFAULT

 

Query deleted instances:

 

resource.type="gce_instance"  
resource.labels.project_id="project-id"
protoPayload.methodName="v1.compute.instances.delete"
severity>=DEFAULT

 

For more information about compute methods you may refer to this link.

I hope this information is helpful.

If you need further assistance, you can always file a ticket on our support team.