Weekend Sale - Special 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 70dumps

PCA Questions and Answers

Question # 6

What is an example of a single-target exporter?

A.

Redis Exporter

B.

SNMP Exporter

C.

Node Exporter

D.

Blackbox Exporter

Full Access
Question # 7

Which Alertmanager feature allows you to temporarily stop notifications for a specific alert?

A.

Silence

B.

Inhibition

C.

Deduplication

D.

Grouping

Full Access
Question # 8

Which metric type uses the delta() function?

A.

Info

B.

Histogram

C.

Gauge

D.

Counter

Full Access
Question # 9

What does the evaluation_interval parameter in the Prometheus configuration control?

A.

How often Prometheus scrapes targets.

B.

How often Prometheus evaluates recording and alerting rules.

C.

How often Prometheus compacts the TSDB data blocks.

D.

How often Prometheus sends metrics to remote storage.

Full Access
Question # 10

What is metamonitoring?

A.

Metamonitoring is a monitoring that covers 100% of a service.

B.

Metamonitoring is the monitoring of non-IT systems.

C.

Metamonitoring is the monitoring of the monitoring infrastructure.

D.

Metamonitoring is monitoring social networks for end user complaints about quality of service.

Full Access
Question # 11

Given the metric prometheus_tsdb_lowest_timestamp_seconds, how do you know in which month the lowest timestamp of your Prometheus TSDB belongs?

A.

format_date(prometheus_tsdb_lowest_timestamp_seconds,"%M")

B.

prometheus_tsdb_lowest_timestamp_seconds % month

C.

month(prometheus_tsdb_lowest_timestamp_seconds)

D.

(time() - prometheus_tsdb_lowest_timestamp_seconds) / 86400

Full Access
Question # 12

What is considered the best practice when working with alerting notifications?

A.

Minor alerts are as important as major alerts and should be treated with equal care.

B.

Have as few alerts as possible by alerting only when symptoms might become externally visible.

C.

Have as many alerts as possible to catch minor problems before they become outages.

D.

Make sure to generate alerts on every metric of every component of the stack.

Full Access
Question # 13

Which function would you use to calculate the 95th percentile latency from histogram data?

A.

quantile_over_time(0.95, http_request_duration_seconds[5m])

B.

histogram_quantile(0.95, sum(rate(http_request_duration_seconds_bucket[5m])) by (le))

C.

percentile(http_request_duration_seconds, 0.95)

D.

topk(0.95, http_request_duration_seconds)

Full Access
Question # 14

Which PromQL statement returns the average free bytes of the filesystems over the last hour?

A.

avg_over_time(node_filesystem_avail_bytes[1h])

B.

avg(node_filesystem_avail_bytes[1h])

C.

sum(node_filesystem_avail_bytes[1h])

D.

sum_over_time(node_filesystem_avail_bytes[1h])

Full Access
Question # 15

Which field in alerting rules files indicates the time an alert needs to go from pending to firing state?

A.

duration

B.

interval

C.

timeout

D.

for

Full Access
Question # 16

Which PromQL expression computes the rate of API Server requests across the different cloud providers from the following metrics?

apiserver_request_total{job="kube-apiserver", instance="192.168.1.220:6443", cloud="aws"} 1

apiserver_request_total{job="kube-apiserver", instance="192.168.1.121:6443", cloud="gcloud"} 5

A.

rate(apiserver_request_total{job="kube-apiserver"}[5m]) by (cloud)

B.

sum by (cloud) (apiserver_request_total{job="kube-apiserver"})

C.

sum by (cloud)(rate(apiserver_request_total{job="kube-apiserver"}[5m]))

D.

rate(sum by (cloud)(apiserver_request_total{job="kube-apiserver"})[5m])

Full Access
Question # 17

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

Full Access
Question # 18

Which Alertmanager feature prevents duplicate notifications from being sent?

A.

Grouping

B.

Inhibition

C.

Deduplication

D.

Silencing

Full Access