๐ŸŒ
Prometheus
prometheus.io โ€บ docs โ€บ concepts โ€บ metric_types
Metric types | Prometheus
The Prometheus instrumentation libraries offer four core metric types. With the exception of native histograms, these are currently only differentiated in the API of instrumentation libraries and in the exposition protocols. The Prometheus server does not yet make use of the type information and flattens all types except native histograms into untyped time series of floating point values.
๐ŸŒ
Prometheus
prometheus.io โ€บ docs โ€บ tutorials โ€บ understanding_metric_types
Understanding metric types | Prometheus
They are used when the buckets of a metric are not known beforehand, but it is highly recommended to use histograms over summaries whenever possible. In this tutorial, we covered the types of metrics in detail and a few PromQL operations like rate, histogram_quantile, etc.
People also ask

What are the types of metrics in Prometheus?
Prometheus supports four metric types: Counter, Gauge, Histogram, and Summary. Each type offers distinct capabilities for tracking different system behaviors.
๐ŸŒ
last9.io
last9.io โ€บ blog โ€บ prometheus-metrics-types-a-deep-dive
Prometheus Metrics Types - A Deep Dive | Last9
How does the Prometheus counter metric type work?
A counter increases monotonically. It tracks events like API hits, background job runs, or errors. When the process restarts, the counter resets, but functions like rate() account for the reset.
๐ŸŒ
last9.io
last9.io โ€บ blog โ€บ prometheus-metrics-types-a-deep-dive
Prometheus Metrics Types - A Deep Dive | Last9
How do you define a new metric type in Prometheus?
You cannot define new metric types beyond the standard four. You can define custom metrics using the existing types through client libraries, setting up counters, gauges, histograms (with configurable buckets), or summaries for your needs.
๐ŸŒ
last9.io
last9.io โ€บ blog โ€บ prometheus-metrics-types-a-deep-dive
Prometheus Metrics Types - A Deep Dive | Last9
๐ŸŒ
OpenObserve
openobserve.ai โ€บ home โ€บ blog โ€บ prometheus metrics types
Prometheus Metric Types (Counters, Gauges, Histograms, Summaries)
November 19, 2025 - Prometheus gives you a powerful foundation for understanding your system through metrics - counters for tracking events, gauges for real-time state, histograms for latency distributions, and summaries for client-side quantiles.
๐ŸŒ
Last9
last9.io โ€บ blog โ€บ prometheus-metrics-types-a-deep-dive
Prometheus Metrics Types - A Deep Dive | Last9
June 17, 2026 - Prometheus metric types explained: counters, gauges, histograms, and summaries, with PromQL query patterns, cardinality traps to avoid, and guidance on when to use each.
๐ŸŒ
VictoriaMetrics
victoriametrics.com โ€บ blog โ€บ prometheus metrics explained: counters, gauges, histograms & summaries
Prometheus Metrics Explained: Counters, Gauges, Histograms & Summaries
February 21, 2025 - Metrics come in different types: counters that only increase, gauges that fluctuate, histograms that show value distributions, and summaries that pre-calculate statistics.
๐ŸŒ
Promlabs
promlabs.com โ€บ blog โ€บ 2020 โ€บ 09 โ€บ 25 โ€บ metric-types-in-prometheus-and-promql
PromLabs | Blog - Metric Types in Prometheus and PromQL
September 25, 2020 - See also the best practices documentation about histogram and summary metrics to learn more about the tradeoffs of histograms and summaries, and how to choose histogram bucket boundaries correctly.
๐ŸŒ
SigNoz
signoz.io โ€บ guides โ€บ what are the 4 types of metrics in prometheus - understanding the core metric types
Prometheus Metric Types - The 4 Core Metrics Explained | SigNoz
July 2, 2026 - The 4 types of Prometheus metrics explained: counter, gauge, histogram, and summary, when to use each, and how to pick the right one.
Find elsewhere
๐ŸŒ
Medium
jacksonblog.medium.com โ€บ prometheus-metrics-type-1190c181c382
Prometheus metrics type
March 3, 2024 - There are four primary Prometheus metric types PromQL can query: counters, gauges, histograms, and summaries.
๐ŸŒ
client_java
prometheus.github.io โ€บ client_java โ€บ getting-started โ€บ metric-types
Metric Types | client_java
The Prometheus Java metrics library implements the metric types defined in the OpenMetrics standard: Counter Gauge Histogram Custom Bucket Boundaries Native Histograms with Custom Buckets (NHCB) Summary Info StateSet GaugeHistogram and Unknown Counter Counter is the most common and useful metric ...
๐ŸŒ
TigerData
tigerdata.com โ€บ blog โ€บ four-types-prometheus-metrics-to-collect
A Deep Dive Into the Four Types of Prometheus Metrics
December 10, 2025 - Our hope is that after reading ... collected by Prometheus as part of its exposition format include Counters, Gauges, Histograms, and Summaries....
๐ŸŒ
Medium
medium.com โ€บ @Nitish_Mane โ€บ prometheus-metric-types-and-their-usage-b5269e21c7c7
Prometheus Metric Types and Their Usage โ€” Part 3 | by Nitish Mane | Medium
October 14, 2024 - In exploring Prometheus metrics, we will examine the four primary types: gauges, counters, summaries, and histograms. Each metric serves a distinct purpose in monitoring applications, and understanding their functionalities is crucial for effective ...
๐ŸŒ
GeeksforGeeks
geeksforgeeks.org โ€บ devops โ€บ prometheus-metric-types
Prometheus Metric Types Explained - GeeksforGeeks
July 23, 2025 - They indicate when and where problems have occurred or are occurring. Prometheus gathered four different kinds of metrics as part of its exposition format: counters, gauges, histograms, and summaries.
๐ŸŒ
devopsvoyager
devopsvoyager.hashnode.dev โ€บ prometheus-metrics-types-counter-gauge-histogram-and-summary
Prometheus Metrics Types: Counter, Gauge, Histogram, and Summary
February 6, 2025 - Understanding Counter, Gauge, Histogram, and Summary metrics is essential for designing effective monitoring strategies with Prometheus. Each metric type serves a unique purpose:
๐ŸŒ
Chronosphere
chronosphere.io โ€บ home โ€บ an introduction to the 4 primary prometheus metrics types
An introduction to the 4 primary Prometheus metrics types
April 2, 2025 - There are four primary Prometheus metric types PromQL can query: counters, gauges, histograms, and summary metrics. These metric types fulfill the needs or requirements for most use cases, and are found in Prometheusโ€™ official client libraries: ...
๐ŸŒ
Atatus
atatus.com โ€บ blog โ€บ prometheus-metrics-understanding-gauges-and-counters
Prometheus Metrics Types: Understanding Gauges and Counters
March 20, 2025 - By choosing the right metric type, you ensure that your system monitoring delivers accurate and insightful data. Counters capture the totality of an event, continuously incrementing over time. Gauges reflect the instantaneous state, tracking values that fluctuate. Together, they offer a complete view of your application's performance, health, and system behaviour. Atatus supports Prometheus metrics ingestion through Prometheus Remote Write, allowing you to seamlessly forward metrics for advanced visualization and alerting.
๐ŸŒ
Google Groups
groups.google.com โ€บ g โ€บ prometheus-users โ€บ c โ€บ IdsbA-t57mE
Is there any plan for prometheus to support string type metrics
November 1, 2022 - On 2022-11-01 12:09, Prashant Singh wrote: > Currently prometheus metrics types include counter, gauge, histogram, > and summary. They are all numeric types.
๐ŸŒ
Better Stack
betterstack.com โ€บ community โ€บ guides โ€บ monitoring โ€บ prometheus-metrics-explained
A Practical Guide to Prometheus Metric Types | Better Stack Community
The table below summarizes the differences between the two metric types: ... You need to aggregate quantiles across multiple instances. You want the flexibility to calculate different quantiles or use different time windows later on. You are monitoring system-wide Service Level Objectives (SLOs). ... You are monitoring a single instance or service. You need high precision for specific quantiles with low server-side overhead. Aggregation is not required or practical. ... Prometheus is a powerful monitoring tool, but it can struggle to keep up as your systems grow.
๐ŸŒ
Tom Gregory
tomgregory.com โ€บ the-four-types-of-prometheus-metrics
The 4 Types Of Prometheus Metrics | Tom Gregory
December 2, 2019 - The histogram metric type measures the frequency of value observations that fall into specific predefined buckets. For example, you could measure request duration for a specific HTTP request call using histograms. Rather than storing every duration for every request, Prometheus will make an approximation by storing the frequency of requests that fall into particular buckets.