A PromQL lexer for Pygments
Project description
pygments-promql
A PromQL lexer for Pygments.
This Python package provides a Pygments lexer for the Prometheus Query Language. It allows Pygments and other tools (Sphinx, Chroma, etc) to highlight PromQL queries.
Installation
Using pip
To get the latest version from pypi.org:
pip install pygments-promql
Usage
Command-line
In a terminal you can echo and pipe a query directly from stdin:
echo 'prometheus_http_requests_total{code="200"}' | pygmentize -l promql
Or use a file, for example, create the example.promql
file with queries from
tests/example.promql.
In this case the option -l promql
is not needed because the lexer will be
detected based on the file extension.
Showing colorized output in a terminal:
pygmentize example.promql
To generate a PNG file:
pygmentize -f png -O "line_numbers=False,style=monokai" -o example.png example.promql
Python code
The following example:
from pygments import highlight
from pygments.formatters import HtmlFormatter
from pygments_promql import PromQLLexer
query = 'http_requests_total{handler="/api/comments"}'
print(highlight(query, PromQLLexer(), HtmlFormatter()))
Will generate this HTML output:
<div class="highlight">
<pre>
<span></span>
<span class="nv">http_requests_total</span>
<span class="p">{</span>
<span class="nl">handler</span>
<span class="o">=</span>
<span class="s">"/api/comments"</span>
<span class="p">}</span>
<span class="w"></span>
</pre>
</div>
Use HtmlFormatter(noclasses=True)
to include CSS inline styles on every <span>
tag.
Sphinx
In order to highlight PromQL syntax in your Sphinx documentation site
you just need to add this 3 lines of Python code at the end of your site's conf.py
file:
from sphinx.highlighting import lexers
from pygments_promql import PromQLLexer
lexers['promql'] = PromQLLexer()
Then you will be able to use it like this:
Here's a PromQL example:
.. code-block:: promql
# A metric with label filtering
go_gc_duration_seconds{instance="localhost:9090"}
Testing
If you want to test, play or contribute to this repo:
git clone https://github.com/pabluk/pygments-promql.git
cd pygments-promql/
pip install -r requirements.txt
pip install -e .
pytest -v
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pygments-promql-0.1.1.tar.gz
.
File metadata
- Download URL: pygments-promql-0.1.1.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa38a1d63c483243acc915d8b2eaa7581093b61ad9b6b6339b37aff8b747017c |
|
MD5 | 03a00917deee08fe15491965f57bc997 |
|
BLAKE2b-256 | b08571f7ec3a84b30f73164b20b39c13bbc5d93269c6a18cf9ee88f9f5ead2a3 |
File details
Details for the file pygments_promql-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: pygments_promql-0.1.1-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01eb5e3977a1953d305bc1ac572409e5e74240ed5ffd53342934c701270f6c1b |
|
MD5 | e70eb4688723934189b5b0958bf8dc5d |
|
BLAKE2b-256 | d6698fac162fcf20c61351d730faaf0e30a7f7ed6858114371faf74b0b4cc192 |