File tree Expand file tree Collapse file tree 3 files changed +17
-2
lines changed
src/prometheus_fastapi_instrumentator Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,21 @@ and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0).
9
9
10
10
Nothing.
11
11
12
+ ## [ 7.1.0] ( https://github.com/trallnag/prometheus-fastapi-instrumentator/compare/v7.0.2...v7.1.0 ) / 2025-03-19
13
+
14
+ ### Added
15
+
16
+ - Included metrics closure creators have new optional parameter ` custom_labels `
17
+ to set additional custom static labels. Parameter has not been added to the
18
+ ` Instrumentator() ` constructor. Thanks to
19
+ [ @iocentos ] ( https://github.com/iocentos ) for requesting this in
20
+ [ #279 ] ( https://github.com/trallnag/prometheus-fastapi-instrumentator/issues/279 )
21
+ and [ @martian711 ] ( https://github.com/martian711 ) in
22
+ [ #287 ] ( https://github.com/trallnag/prometheus-fastapi-instrumentator/pull/287 )
23
+ as well as [ @Budlee ] ( https://github.com/Budlee ) in
24
+ [ #326 ] ( https://github.com/trallnag/prometheus-fastapi-instrumentator/pull/326 )
25
+ for implementing it.
26
+
12
27
## [ 7.0.2] ( https://github.com/trallnag/prometheus-fastapi-instrumentator/compare/v7.0.1...v7.0.2 ) / 2025-01-14
13
28
14
29
### Fixed
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
5
5
[project ]
6
6
name = " prometheus-fastapi-instrumentator"
7
- version = " 7.0.2 "
7
+ version = " 7.1.0 "
8
8
description = " Instrument your FastAPI app with Prometheus metrics"
9
9
authors = [
10
10
{
name =
" Tim Schwenke" ,
email =
" [email protected] " }
Original file line number Diff line number Diff line change 1
1
from .instrumentation import PrometheusFastApiInstrumentator
2
2
3
- __version__ = "7.0.2 "
3
+ __version__ = "7.1.0 "
4
4
5
5
Instrumentator = PrometheusFastApiInstrumentator
You can’t perform that action at this time.
0 commit comments