Weekend Sale - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: sntaclus

When can you use the Grafana Heatmap panel?

A.

You can use it to graph a counter metric.

B.

You can use it to graph a histogram metric.

C.

You can use it to graph an info metric.

D.

You can use it to graph a gauge metric.

What is a rule group?

A.

It is a set of rules that are executed sequentially.

B.

It is the set (the group) of all the rules in a file.

C.

It is a set of rules, split into groups by type.

D.

It is a set of rules that are grouped by labels.

How would you name a metric that measures gRPC response size?

A.

grpc_response_size_bytes

B.

grpc_response_size

C.

grpc_response_size_total

D.

grpc_response_size_sum

What is a difference between a counter and a gauge?

A.

Counters change value on each scrape and gauges remain static.

B.

Counters and gauges are different names for the same thing.

C.

Counters have no labels while gauges can have many labels.

D.

Counters are only incremented, while gauges can go up and down.

How would you correctly name a metric that provides metadata information about the binary?

A.

app_build_info

B.

app_build

C.

app_metadata

D.

app_build_desc

What Prometheus component would you use if targets are running behind a Firewall/NAT?

A.

Pull Proxy

B.

Pull Gateway

C.

HA Proxy

D.

PushProx

With the following metrics over the last 5 minutes:

up{instance="localhost"} 1 1 1 1 1

up{instance="server1"} 1 0 0 0 0

What does the following query return:

min_over_time(up[5m])

A.

{instance="localhost"} 1 {instance="server1"} 0

B.

{instance="server1"} 0

Which of the following PromQL queries is invalid?

A.

max by (instance) up

B.

max on (instance) (up)

C.

max without (instance) up

D.

max without (instance, job) up

Which of the following is a valid metric name?

A.

go routines

B.

go.goroutines

C.

go_goroutines

D.

99_goroutines

What is api_http_requests_total in the following metric?

api_http_requests_total{method="POST", handler="/messages"}

A.

"api_http_requests_total" is a metric label name.

B.

"api_http_requests_total" is a metric type.

C.

"api_http_requests_total" is a metric name.

D.

"api_http_requests_total" is a metric field.