A customer has a large population of servers. They want to identify the servers where utilization has increased the most since last week. Which analytics function is needed to achieve this?
The correct answer is C. Timeshift.
timeshift(1w, counters(''server.utilization''))
This will return the value of the server.utilization counter metric for each server one week ago. You can then subtract this value from the current value of the same metric to get the difference in utilization. You can also use a chart to visualize the results and sort them by the highest difference in utilization.
Currently there are no comments in this discussion, be the first to comment!