Instrument your FastAPI with Prometheus metrics
Project description
Prometheus FastAPI Instrumentator
Instruments your FastAPI with Prometheus metrics. Install with:
pip install prometheus-fastapi-instrumentator
Fast Track
from prometheus_fastapi_instrumentator import Instrumentator
Instrumentator().instrument(app).expose(app)
With this single line FastAPI is instrumented and all Prometheus metrics used
in the FastAPI app can be scraped via the added /metrics
endpoint.
The exporter includes the single metric http_request_duration_seconds
.
Everything around it can be configured and deactivated. These
options include:
- Status codes are grouped into
2xx
,3xx
and so on. - Requests without a matching template are grouped into the handler
none
. - Renaming of labels and the metric.
- Regex patterns to ignore certain routes.
See the Example with all parameters for all possible options or check out the documentation itself.
Example with all parameters
from prometheus_fastapi_instrumentator import PrometheusFastApiInstrumentator
PrometheusFastApiInstrumentator(
should_group_status_codes=False,
should_ignore_untemplated=True,
should_group_untemplated=False,
excluded_handlers=["/metrics", "/admin"],
buckets=[1, 2, 3, 4, 5],
metric_name="my_custom_metric_name",
label_names=("method_type", "path", "status_code",),
).instrument(app).expose(app, "/prometheus_metrics")
instrument
: Instruments the given FastAPI based on the configuration in
the constructur of the exporter class.
expose
: Completely separate from instrument
and not necessary for
instrumentation. Just a simple option to expose metrics by adding an endpoint
to the given FastAPI. Supports multiprocess mode.
Prerequesites
python = "^3.6"
(tested with 3.6 and 3.8)fastapi = ">=0.38.1, <=1.0.0"
(tested with 0.38.1 and 0.59.0)prometheus-client = "^0.8.0"
(tested with 0.8.0)
Development
Developing and building this package on a local machine requires
Python Poetry. I recommend to run Poetry in
tandem with Pyenv. Once the repository is
cloned, run poetry install
and poetry shell
. From here you may start the
IDE of your choice.
For formatting, the black formatter is used.
Run black .
in the repository to reformat source files. It will respect
the black configuration in the pyproject.toml
.
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 prometheus-fastapi-instrumentator-1.1.0.tar.gz
.
File metadata
- Download URL: prometheus-fastapi-instrumentator-1.1.0.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.9 CPython/3.8.3 Linux/5.3.0-1032-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f552854960fc679b46c2e11ff55eb345db3253f9f2b19c1c95d7944cf9fe0f0f |
|
MD5 | 593afa3d6460280de402875e750d4054 |
|
BLAKE2b-256 | c17d49620c9ab52ce13fc9f38bd1055c3198cd3c2a55b6855628689e8f73fe57 |
Provenance
File details
Details for the file prometheus_fastapi_instrumentator-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: prometheus_fastapi_instrumentator-1.1.0-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.9 CPython/3.8.3 Linux/5.3.0-1032-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 72feed458aeb1c33a4d5ef39eb7bfc7f4708703454aee9610134e748d8a9cf0a |
|
MD5 | 578cebeb7b6c64715213d9733001d777 |
|
BLAKE2b-256 | 81c5418da7ce63b2a10b316823cc0b358beebe4b1fc3b9ace38132b163daf369 |