# Prometheus FastAPI Instrumentator
[![PyPI version](https://badge.fury.io/py/prometheus-fastapi-instrumentator.svg)](https://pypi.python.org/pypi/prometheus-fastapi-instrumentator/)
[![Maintenance](https://img.shields.io/badge/maintained%3F-yes-green.svg)](https://GitHub.com/Naereen/StrapDown.js/graphs/commit-activity)
[![downloads](https://pepy.tech/badge/prometheus-fastapi-instrumentator/month)](https://pepy.tech/project/prometheus-fastapi-instrumentator/month)
[![docs](https://img.shields.io/badge/docs-here-blue)](https://trallnag.github.io/prometheus-fastapi-instrumentator/)
![release](https://github.com/trallnag/prometheus-fastapi-instrumentator/workflows/release/badge.svg)
![test branches](https://github.com/trallnag/prometheus-fastapi-instrumentator/workflows/test%20branches/badge.svg)
[![codecov](https://codecov.io/gh/trallnag/prometheus-fastapi-instrumentator/branch/master/graph/badge.svg)](https://codecov.io/gh/trallnag/prometheus-fastapi-instrumentator)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
A configurable and modular Prometheus Instrumentator for your FastAPI. Install
`prometheus-fastapi-instrumentator` from
[PyPI](https://pypi.python.org/pypi/prometheus-fastapi-instrumentator/). Here
is the fast track to get started with a sensible preconfigured instrumentator:
```python
from prometheus_fastapi_instrumentator import Instrumentator
Instrumentator().instrument(app).expose(app)
```
With this, your FastAPI is instrumented and metrics ready to be scraped. The
sensible defaults give you:
* Counter `http_requests_total` with `handler`, `status` and `method`. Total
number of requests.
* Summary `http_request_size_bytes` with `handler`. Added up total of the
content lengths of all incoming requests. If the request has no valid
content length header it will be ignored. No percentile calculated.
* Summary `http_response_size_bytes` with `handler`. Added up total of the
content lengths of all outgoing responses. If the response has no valid
content length header it will be ignored. No percentile calculated.
* Histogram `http_request_duration_seconds` with `handler`. Only a few buckets
to keep cardinality low. Uses for aggregations by handler or SLI buckets.
* Histogram `http_request_duration_highr_seconds` without any labels. Large
number of buckets (>20) for accurate percentile calculations.
In addition, following behaviour is active:
* Status codes are grouped into `2xx`, `3xx` and so on.
* Requests without a matching template are grouped into the handler `none`.
If one of these presets does not suit your needs you can simply tweak
the instrumentator with one of the many parameters or roll your own metrics.
---
Contents: **[Features](#features)** |
**[Advanced Usage](#advanced-usage)** |
[Creating the Instrumentator](#creating-the-instrumentator) |
[Adding metrics](#adding-metrics) |
[Creating new metrics](#creating-new-metrics) |
[Perform instrumentation](#perform-instrumentation) |
[Exposing endpoint](#exposing-endpoint) |
**[Documentation](#documentation)** |
**[Prerequesites](#prerequesites)** |
**[Development](#development)**
---
## Features
Beyond the fast track, this instrumentator is **highly configurable** and it
is very easy to customize and adapt to your specific use case. Here is
a list of some of these options you may opt-in to:
* Regex patterns to ignore certain routes.
* Completely ignore untemplated routes.
* Control instrumentation and exposition with an env var.
* Rounding of latencies to a certain decimal number.
* Renaming of labels and the metric.
It also features a **modular approach to metrics** that should instrument all
FastAPI endpoints. You can either choose from a set of already existing metrics
or create your own. And every metric function by itself can be configured as
well. You can see ready to use metrics [here](https://trallnag.github.io/prometheus-fastapi-instrumentator/metrics.html).
## Advanced Usage
This chapter contains an example on the advanced usage of the Prometheus
FastAPI Instrumentator to showcase most of it's features. Fore more concrete
info check out the
[automatically generated documentation](https://trallnag.github.io/prometheus-fastapi-instrumentator/).
### Creating the Instrumentator
We start by creating an instance of the Instrumentator. Notice the additional
`metrics` import. This will come in handy later.
```python
from prometheus_fastapi_instrumentator import Instrumentator, metrics
instrumentator = Instrumentator(
should_group_status_codes=False,
should_ignore_untemplated=True,
should_respect_env_var=True,
excluded_handlers=[".*admin.*", "/metrics"],
env_var_name="ENABLE_METRICS",
)
```
Unlike in the fast track example, now the instrumentation and exposition will
only take place if the environment variable `ENABLE_METRICS` is `true` at
run-time. This can be helpful in larger deployments with multiple services
depending on the same base FastAPI.
### Adding metrics
Let's say we also want to instrument the size of requests and responses. For
this we use the `add()` method. This method does nothing more than taking a
function and adding it to a list. Then during run-time every time FastAPI
handles a request all functions in this list will be called while giving them
a single argument that stores useful information like the request and
response objects. If no `add()` at all is used, the default metric gets added
in the background. This is what happens in the fast track example.
All instrumentation functions are stored as closures in the `metrics` module.
Closures come in handy here because it allows us to configure the functions
within.
```python
instrumentator.add(metrics.latency(buckets=(1, 2, 3,)))
```
This simply adds the metric you also get in the fast track example with a
modified buckets argument. But we would also like to record the size of
all requests and responses.
```python
instrumentator.add(
metrics.request_size(
should_include_handler=True,
should_include_method=False,
should_include_status=True,
)
).add(
metrics.response_size(
should_include_handler=True,
should_include_method=False,
should_include_status=True,
)
)
```
You can add as many metrics you like to the instrumentator.
### Creating new metrics
As already mentioned, it is possible to create custom functions to pass on to
`add()`. Let's say we want to count the number of times a certain language
has been requested.
```python
def http_requested_languages_total() -> Callable[[Info], None]:
METRIC = Counter(
"http_requested_languages_total",
"Number of times a certain language has been requested.",
labelnames=("langs",)
)
def instrumentation(info: Info) -> None:
langs = set()
lang_str = info.request.headers["Accept-Language"]
for element in lang_str.split(",")
element = element.split(";")[0].strip().lower()
langs.add(element)
for language in langs:
METRIC.labels(language).inc()
return instrumentation
```
The function `http_requested_languages_total` is used for persistent elements
that are stored between all instrumentation executions (for example the
metric instance itself). Next comes the closure. This function must adhere
to the shown interface. It will always get an `Info` object that contains
the request, response and a few other modified informations. For example the
(grouped) status code or the handler. Finally, the closure is returned.
To use it, we hand over the closure to the instrumentator object.
```python
instrumentator.add(http_requested_languages_total())
```
### Perform instrumentation
Up to this point, the FastAPI has not been touched at all. Everything has been
stored in the `instrumentator` only. To actually register the instrumentatio
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
资源分类:Python库 所属语言:Python 资源全名:prometheus-fastapi-instrumentator-5.0.0.tar.gz 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059
资源推荐
资源详情
资源评论
收起资源包目录
prometheus-fastapi-instrumentator-5.0.0.tar.gz (8个子文件)
prometheus-fastapi-instrumentator-5.0.0
PKG-INFO 10KB
pyproject.toml 937B
prometheus_fastapi_instrumentator
metrics.py 13KB
__init__.py 178B
instrumentation.py 8KB
setup.py 10KB
README.md 9KB
LICENSE.txt 1KB
共 8 条
- 1
资源评论
挣扎的蓝藻
- 粉丝: 14w+
- 资源: 15万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- apache-maven-3.6.1-bin.zip
- c593f5fc-d4a7-4b43-8ab2-51afc90f3f62
- IIR滤波器参数计算函数
- WPF树菜单拖拽功能,下级目录拖到上级目录,上级目录拖到下级目录.zip
- CDH6.3.2版本hive2.1.1修复HIVE-14706后的jar包
- 鸿蒙项目实战-天气项目(当前城市天气、温度、湿度,24h天气,未来七天天气预报,生活指数,城市选择等)
- Linux环境下oracle数据库服务器配置中文最新版本
- Linux操作系统中Oracle11g数据库安装步骤详细图解中文最新版本
- SMA中心接触件插合力量(插入力及分离力)仿真
- 变色龙记事本,有NPP功能,JSONview功能
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功