Hi Grafana Community,
I am currently working on the GROT Academy - Technical Practitioner 101, Module 6: PromQL Lab and I’m stuck on the challenge question:
“How would you query for up metrics coming from the LGTM containers?”
Environment:
- Cluster name: grot-academy
- Namespace: default
- LGTM pods: lgtm-* (e.g., lgtm-grafana, lgtm-loki, etc.)
What I tried: - up{namespace=“default”, container=“lgtm”}
- up{namespace=“default”, container=~“lgtm.*”}
- up{namespace=“default”, pod=~"lgtm."}
- label_replace(up{namespace=“default”, pod=~"lgtm."}, “container”, “$1”, “pod”, “(lgtm.*)”)
Error from Hint Checker: - “Your query is valid.”

- “container label not found.”

Observation:
The Grafana Cloud metrics builder suggests up{namespace=“default”, container=“lgtm”}
but the hint checker still returns “container label not found.” The container label does not appear to exist on the up metric in the lab environment, which may be related to a known helm chart change affecting GROT Academy labs.
Any guidance on the correct query or if this is a known lab environment issue would be greatly appreciated.
Thank you!
