🌐
Prometheus
prometheus.io › docs › prometheus › latest › querying › basics
Querying basics | Prometheus
PromQL works exactly the same in each case; the range query is just like an instant query run multiple times at different timestamps. In the Prometheus UI, the "Table" tab is for instant queries and the "Graph" tab is for range queries.
🌐
Grafana
grafana.com › blog › introduction-to-promql-the-prometheus-query-language
Introduction to PromQL, the Prometheus query language | Grafana Labs
February 5, 2020 - All calculations in Prometheus are floating point operations. When you group together scalars as a set of metrics in a single point in time, you get the instant vector data type. When you run a query asking for only the name of a metric, such as bicycle_distance_meters_total, the response is an instant vector.
🌐
Prometheus
prometheus.io › docs › prometheus › latest › querying › examples
Query examples | Prometheus
Join PromCon EU 2026 , the Prometheus users conference, on October 7–8, 2026 in Munich. PromCon EU 2026 — Oct 7–8, Munich. ... Return a whole range of time (in this case 5 minutes up to the query time) for the same vector, making it a range vector:
🌐
Last9
last9.io › blog › prometheus-query-examples
Essential Prometheus Queries: Simple to Advanced | Last9
June 15, 2026 - This query returns all time series with the metric name http_requests_total. It’s as straightforward as it gets—simply naming the metric you want to see. You’ll get back every label combination Prometheus has stored for this metric.
🌐
Chronosphere
chronosphere.io › home › understanding the prometheus query language engine and its quirks
Understanding the Prometheus Query Language engine and its quirks | Chronosphere
June 26, 2024 - Prometheus query language (PromQL) is specifically designed for querying and aggregating Prometheus time series data but can exhibit behavior that may seem atypical when compared to traditional query languages such as SQL.
🌐
Logz.io
logz.io › home › blog › how to › an intro to promql: basic concepts & examples
An Intro to PromQL: Basic Concepts & Examples | Logz.io
September 2, 2023 - PromQL, short for Prometheus Querying Language, is the main way to query metrics within Prometheus. You can display an expression’s return either as a graph or export it using the HTTP API.
🌐
Grafana
grafana.com › docs › grafana › latest › datasources › prometheus › query-editor
Prometheus query editor | Grafana documentation
You can access the query editor from the Explore page or from any dashboard panel by clicking the panel title and selecting Edit. For general documentation on querying data sources in Grafana, refer to Query and transform data. For more information about PromQL, refer to Querying Prometheus.
🌐
ITRS Group
docs.itrsgroup.com › docs › geneos › 7.10.0 › collection › prometheus-query › index.html
Prometheus Query
The Prometheus Query plugin is a Netprobe plugin that allows you to query metrics from existing Prometheus deployments using PromQL and ingest the results directly into Geneos.
Find elsewhere
🌐
Chronosphere
chronosphere.io › home › workshop: exploring basic prometheus queries
Workshop: Exploring basic Prometheus queries
March 19, 2025 - You’ll start off by getting comfortable selecting metrics and at the same time learning the basic definitions of metrics query terminology. Each query is presented for you to cut-and-paste into your own Prometheus expression browser and followed by an example output so that you see what the query is doing.
🌐
NSRC
nsrc.org › workshops › 2026 › apricot › virt › netmgmt › en › prometheus › ex-promql-basic.html
Learn how to use Prometheus promql queries
REMINDER: prometheus evaluates expressions at the current time, so you see the most recently stored data. In the web interface, the “Evaluation time” will be unset, like this: This is how it should be for these exercises. If for any reason you see a specific time and date like this: ... The most important part of promQL querying is to filter down, from the universe of timeseries which are available, to just the ones you are interested in.
🌐
Is It Observable
isitobservable.io › home › observability › prometheus › how to build a promql (prometheus query language)
How to build a PromQL (Prometheus Query Language) | Is It Observable
March 18, 2025 - This blog post will show you what ... Query Language is the primary language that helps you visualize Prometheus data in a dashboard or build alerting rules when using the alert manager of Prometheus....
🌐
npm
npmjs.com › package › prometheus-query
prometheus-query - npm
September 14, 2025 - A Javascript client for Prometheus query API. Latest version: 3.5.1, last published: a year ago. Start using prometheus-query in your project by running `npm i prometheus-query`. There are 18 other projects in the npm registry using prometheus-query.
      » npm install prometheus-query
    
Published: Sep 14, 2025
Version: 3.5.1
🌐
New Relic
docs.newrelic.com › docs › infrastructure › prometheus-integrations › view-query-data › view-query-your-prometheus-data
View and query your Prometheus data | New Relic Documentation
To query and visualize the metrics collected for your Prometheus OpenMetrics or remote write integration with New Relic, you can use NRQL.
🌐
DEV Community
dev.to › sre_panchanan › decoding-promql-a-deep-dive-into-prometheus-query-language-4h23
Decoding PromQL: A Deep Dive into Prometheus Query Language - DEV Community
November 12, 2024 - PromQL, short for Prometheus Query Language, is the dedicated language designed for querying and extracting valuable insights from the time-series data stored in Prometheus. As the backbone of Prometheus' querying capabilities, PromQL enables ...
🌐
Medium
medium.com › tools-trips › promql-prometheus-query-language-05d81813df58
PromQL (Prometheus Query Language) | by Engr. Md. Hasan Monsur | Tech Tools | Medium
March 13, 2025 - PromQL (Prometheus Query Language) is a powerful query language used to retrieve and manipulate time series data stored in Prometheus.
🌐
Prometheus
prometheus.io › docs › prometheus › latest › querying › functions
Query functions | Prometheus
(This implies that a change in the data labels in the conventional Prometheus view constitutes the end of one info series and the beginning of a new info series, while the “logical” view of the info function is that the same info series continues to exist, just with different “data”.) The conventional approach of adding data labels is sometimes called a “join query”, as illustrated by the following example:
🌐
Logz.io
docs.logz.io › user guide › infrastructure monitoring › introduction to prometheus › prometheus examples and best practices
Prometheus Examples and Best Practices | Logz.io Docs
For example, if the time series you're querying has the following labels: * namespace * container * pod * user To search for a namespace label that starts with **kub**, run the following query: `container_memory_working_set_bytes{namespace=~"kub.+"}`