Certs Vault
See all results for ""
Home Exams
CRISC ISACA CISSP ISC2 200-301 Cisco SY0-701 CompTIA AZ-104 Microsoft AI-900 Microsoft AIGP IAPP 1Z0-1067-26 Oracle View All Exams →
Sign in Create account

Prometheus Certified Associate PCA Exam Questions

Preparing for the PCA exam is simple with Certs Vault. We offer easy-to-understand study materials that help you learn the most important exam topics. You can study using our PDF questions, practice online with a real exam-style test, or use the desktop practice software. Choose the study method that works best for you and prepare at your own pace.

At Certs Vault, we keep our PCA practice questions up to date. Whenever the exam syllabus or objectives change, we update our study materials so you always learn the latest topics. This helps you save time, avoid outdated content, and feel more confident when you take your exam.

Download Exam View Entire Exam
Page: 1 / 1
Question #1 (Topic: Demo Questions)

Which exporter would be best suited for basic HTTP probing? 

A.

JMX exporter

B.

Blackbox exporter

C.

Apache exporter

D.

SNMP exporter

Correct Answer: B
Explanation:

The Blackbox Exporter is the Prometheus component designed specifically for probing endpoints over various network protocols, including HTTP, HTTPS, TCP, ICMP, and DNS. It acts as a generic probe service, allowing Prometheus to test endpoints' availability, latency, and correctness without requiring instrumentation in the target application itself. For basic HTTP probing, the Blackbox Exporter performs HTTP GET or POST requests to defined URLs and exposes metrics like probe success, latency, response code, and SSL certificate validity. This makes it ideal for uptime and availability monitoring. By contrast, the JMX exporter is used for collecting metrics from Java applications, the Apache exporter for Apache HTTP Server metrics, and the SNMP exporter for network devices. Thus, only the Blackbox Exporter serves the purpose of HTTP probing. Reference: Verified from Prometheus documentation – Blackbox Exporter Overview and Exporter Usage Guidelines

Question #2 (Topic: Demo Questions)

What's "wrong" with the my app_filG_uploads_total{userid=,,5123",status="failed"} metric? 

A.

The use rid should not be exposed as a label.

B.

The status should not be exposed as a label

C.

The _tota lsuffix should be omitted.

D.

The metric name should consist of dashes instead of underscores. 

Correct Answer: A
Explanation:

In Prometheus best practices, high-cardinality labels—especially those containing unique or userspecific identifiers—should be avoided. The metric myapp_filG_uploads_total{userid="5123",status="failed"} exposes the userid as a label, which is problematic. Each distinct value of a label generates a new time series in Prometheus. If there are thousands or millions of unique users, this would exponentially increase the number of time series, leading to cardinality explosion, degraded performance, and high memory usage. The _total suffix is actually correct and required for counters, as per the Prometheus naming convention. The use of underscores in metric names is also correct, as Prometheus does not support dashes in metric identifiers. The status label, however, is perfectly valid because it typically has a low number of possible values (e.g., “success”, “failed”). Reference: Verified from Prometheus official documentation sectionsInstrumentation – Metric and Label Naming Best Practices and Writing Exporters.

Question #3 (Topic: Demo Questions)

How many metric types does Prometheus text format support? 

A.

40

B.

4

C.

8

D.

10

Correct Answer: B
Explanation:

Prometheus definesfour core metric typesin its official exposition format, which are: Counter, Gauge, Histogram, and Summary. These types represent the fundamental building blocks for expressing quantitative measurements of system performance, behavior, and state. A Counter is a cumulative metric that only increases (e.g., number of requests served). A Gauge represents a value that can go up and down, such as memory usage or temperature. A Histogram samples observations (e.g., request durations) and countsthem in configurable buckets, providing both counts and sum of observed values. A Summary is similar to a histogram but provides quantile estimation over a sliding time window along with count and sum metrics. These four types are the only officially supported metric types in the Prometheus text exposition format as defined by the Prometheus data model. Any additional metrics or custom naming conventions are built on top of these core types but do not constitute new types. Reference: Extracted and verified from Prometheus official documentation sections on Metric Types and Exposition Formats in the Prometheus study materials.

Question #4 (Topic: Demo Questions)

What does scrape_interval configure in Prometheus? 

A.

It defines how frequently to scrape targets. 

B.

 It defines how frequently to evaluate rules.

C.

 It defines how often to send alerts.

D.

It defines how often to refresh metrics. 

Correct Answer: A
Explanation:

In Prometheus, the scrape_interval parameter specifies how frequently the Prometheus server should scrape metrics from its configured targets. Each target exposes an HTTP endpoint (usually /metrics) that Prometheus collects data from at a fixed cadence. By default, the scrape_interval is set to 1 minute, but it can be overridden globally or per job configuration in the Prometheus YAML configuration file. Thissetting directly affectsthe resolution of collected time series data—a shorter interval increases data granularity but also adds network and storage overhead, while a longer interval reduces load but might miss short-lived metric variations. It is important to distinguish scrape_interval from evaluation_interval, which defines how often Prometheus evaluates recording and alerting rules. Thus, scrape_interval pertains only to data collection frequency, not to alerting or rule evaluation. Reference: Extracted and verified from Prometheus documentation on Configuration File – scrape_interval and Scraping Fundamentals sections.

Question #5 (Topic: Demo Questions)

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. 

Correct Answer: D
Explanation:

The key difference between a counter and a gauge in Prometheus lies in how their values change over time. A counter is a cumulative metric that only increases—it resets to zero only when the process restarts. Counters are typically used for metrics like total requests served, bytes processed, or errors encountered. You can derive rates of change from counters using functions like rate() or increase() in PromQL. A gauge, on the other hand, represents a metric that can go up and down. It measures values that fluctuate, such as CPU usage, memory consumption, temperature, or active session counts. Gauges provide a snapshot of current state rather than a cumulative total. This distinction ensures proper interpretation of time-series trends and prevents misrepresentation of one-time or fluctuating values as cumulative metrics. Reference: Extracted and verified from Prometheus official documentation – Metric Typessection explaining Counters and Gauges definitions and usage examples.

Download Exam
Page: 1 / 1
Next Page