PromQL: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * Prometheus Concepts =Organizatorium= Vectors. Instant vectors. Time ranged vectors.") |
|||
Line 3: | Line 3: | ||
=Organizatorium= | =Organizatorium= | ||
Vectors. Instant vectors. Time ranged vectors. | Vectors. Instant vectors. Time ranged vectors. | ||
Query for all [[Prometheus_Concepts#Series|series]] that are associated with a certain label: | |||
<syntaxhighlight lang='text'> | |||
some_metric{some_label!=""} | |||
</syntaxhighlight> | |||
Query for all [[Prometheus_Concepts#Series|series]] that are associated with two labels: | |||
<syntaxhighlight lang='text'> | |||
some_metric{some_label!="",some_other_label!=""} | |||
</syntaxhighlight> |