Bird
0
0

Given this snippet for a dashboard widget filter:

medium📝 Predict Output Q13 of 15
GCP - Cloud Monitoring and Logging
Given this snippet for a dashboard widget filter:
metric.type = "compute.googleapis.com/instance/disk/read_bytes_count" AND resource.label.instance_id = "12345"
What does this filter show?
ADisk read bytes count for instance with ID 12345
BCPU usage for instance 12345
CNetwork bytes sent by instance 12345
DDisk write bytes count for instance 12345
Step-by-Step Solution
Solution:
  1. Step 1: Analyze metric.type value

    The metric is "disk/read_bytes_count", which means bytes read from disk.
  2. Step 2: Check resource label filter

    The filter limits data to instance with ID "12345".
  3. Final Answer:

    Disk read bytes count for instance with ID 12345 -> Option A
  4. Quick Check:

    Disk read bytes + instance filter = Disk read bytes count for instance with ID 12345 [OK]
Quick Trick: Match metric.type and resource label to understand filter [OK]
Common Mistakes:
  • Confusing read bytes with write bytes
  • Mixing disk metrics with CPU or network

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More GCP Quizzes