How can you select all the up metrics whose instance label matches the regex fe-.*?
What is the minimum requirement for an application to expose Prometheus metrics?
Which Alertmanager feature allows you to temporarily stop notifications for a specific alert?
How many metric types does Prometheus text format support?
How do you calculate the average request duration during the last 5 minutes from a histogram or summary called http_request_duration_seconds?
Which of the following signal belongs to symptom-based alerting?
You’d like to monitor a short-lived batch job. What Prometheus component would you use?
Given the following Histogram metric data, how many requests took less than or equal to 0.1 seconds?
apiserver_request_duration_seconds_bucket{job="kube-apiserver", le="+Inf"} 3
apiserver_request_duration_seconds_bucket{job="kube-apiserver", le="0.05"} 0
apiserver_request_duration_seconds_bucket{job="kube-apiserver", le="0.1"} 1
apiserver_request_duration_seconds_bucket{job="kube-apiserver", le="1"} 3
apiserver_request_duration_seconds_count{job="kube-apiserver"} 3
apiserver_request_duration_seconds_sum{job="kube-apiserver"} 0.554003785
What does the evaluation_interval parameter in the Prometheus configuration control?
Which field in alerting rules files indicates the time an alert needs to go from pending to firing state?