SPLK-4001 · Question #59
Which analytic function can be used to discover peak page visits for a site over the last day?
The correct answer is A. Maximum: Transformation (24h). According to the Splunk Observability Cloud documentation1, the maximum function is an analytic function that returns the highest value of a metric or a dimension over a specified time interval. The maximum function can be used as a transformation or an aggregation. A…
Question
Which analytic function can be used to discover peak page visits for a site over the last day?
Options
- AMaximum: Transformation (24h)
- BMaximum: Aggregation (Id)
- CLag: (24h)
- DCount: (Id)
How the community answered
(45 responses)- A78% (35)
- B7% (3)
- C13% (6)
- D2% (1)
Explanation
According to the Splunk Observability Cloud documentation1, the maximum function is an analytic function that returns the highest value of a metric or a dimension over a specified time interval. The maximum function can be used as a transformation or an aggregation. A transformation applies the function to each metric time series (MTS) individually, while an aggregation applies the function to all MTS and returns a single value. For example, to discover the peak page visits for a site over the last day, you can use the following SignalFlow code: maximum(24h, counters("page.visits")) This will return the highest value of the page.visits counter metric for each MTS over the last 24 hours. You can then use a chart to visualize the results and identify the peak page visits for each
Topics
Community Discussion
No community discussion yet for this question.