Valid PCA Dumps shared by EduDump.com for Helping Passing PCA Exam! EduDump.com now offer the newest PCA exam dumps, the EduDump.com PCA exam questions have been updated and answers have been corrected get the newest EduDump.com PCA dumps with Test Engine here:
Which PromQL statement returns the sum of all values of the metric node_memory_MemAvailable_bytes from 10 minutes ago?
Correct Answer: A
In PromQL, the offset modifier allows you to query metrics as they were at a past time relative to the current evaluation. To retrieve the value of node_memory_MemAvailable_bytes as it was 10 minutes ago, you place the offset keyword inside the aggregation function's argument, not after it. The correct query is: sum(node_memory_MemAvailable_bytes offset 10m) This computes the total available memory across all instances, based on data from exactly 10 minutes in the past. Placing offset after the aggregation (as in option B) is syntactically invalid because modifiers apply to instant and range vector selectors, not to complete expressions. Reference: Verified from Prometheus documentation - PromQL Evaluation Modifiers: offset, Aggregation Operators, and Temporal Query Examples.