A user wants to add a link to an existing dashboard from an alert. When they click the dimension value in the alert message, they are taken to the dashboard keeping the context. How can this be accomplished? (select all that apply)
Answer : A, C
The possible ways to add a link to an existing dashboard from an alert are:
Therefore, the correct answer is A and C.
Which of the following rollups will display the time delta between a datapoint being sent and a datapoint being received?
Where does the Splunk distribution of the OpenTelemetry Collector store the configuration files on Linux machines by default?
Answer : B
The correct answer is B. /etc/otel/collector/
An SRE creates a new detector to receive an alert when server latency is higher than 260 milliseconds. Latency below 260 milliseconds is healthy for their service. The SRE creates a New Detector with a Custom Metrics Alert Rule for latency and sets a Static Threshold alert condition at 260ms.
How can the number of alerts be reduced?
When writing a detector with a large number of MTS, such as memory. free in a deployment with 30,000 hosts, it is possible to exceed the cap of MTS that can be contained in a single plot. Which of the choices below would most likely reduce the number of MTS below the plot cap?
Answer : B
The correct answer is B. Add a filter to narrow the scope of the measurement.
Which of the following are correct ports for the specified components in the OpenTelemetry Collector?
Answer : D
The correct answer is D. gRPC (4317), SignalFx (9080), Fluentd (8006).
1: https://docs.splunk.com/observability/gdi/opentelemetry/exposed-endpoints.html
A customer operates a caching web proxy. They want to calculate the cache hit rate for their service. What is the best way to achieve this?
Answer : A
percentage(counters(''cache.hits''), counters(''cache.misses''))
This will return the percentage of cache hits out of the total number of cache attempts. You can also use the ratio() function to get the same result, but as a decimal value instead of a percentage.
ratio(counters(''cache.hits''), counters(''cache.misses''))