fastapi-alertengine 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fastapi_alertengine-1.0.0/PKG-INFO +17 -0
- fastapi_alertengine-1.0.0/README.md +2 -0
- fastapi_alertengine-1.0.0/fastapi_alertengine.egg-info/PKG-INFO +17 -0
- fastapi_alertengine-1.0.0/fastapi_alertengine.egg-info/SOURCES.txt +7 -0
- fastapi_alertengine-1.0.0/fastapi_alertengine.egg-info/dependency_links.txt +1 -0
- fastapi_alertengine-1.0.0/fastapi_alertengine.egg-info/requires.txt +7 -0
- fastapi_alertengine-1.0.0/fastapi_alertengine.egg-info/top_level.txt +1 -0
- fastapi_alertengine-1.0.0/pyproject.toml +29 -0
- fastapi_alertengine-1.0.0/setup.cfg +4 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: fastapi-alertengine
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: FastAPI AlertEngine: fintech-grade request monitoring (p95 latency + error rate) without Prometheus.
|
|
5
|
+
Author: Tandem Media
|
|
6
|
+
Project-URL: Homepage, https://github.com/Tandem-Media/fastapi-alertengine
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: fastapi
|
|
10
|
+
Requires-Dist: redis
|
|
11
|
+
Requires-Dist: pydantic-settings
|
|
12
|
+
Requires-Dist: httpx
|
|
13
|
+
Provides-Extra: dev
|
|
14
|
+
Requires-Dist: uvicorn[standard]; extra == "dev"
|
|
15
|
+
|
|
16
|
+
# fastapi-alertengine
|
|
17
|
+
Production-ready request monitoring and alerting for FastAPI apps using Redis Streams
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: fastapi-alertengine
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: FastAPI AlertEngine: fintech-grade request monitoring (p95 latency + error rate) without Prometheus.
|
|
5
|
+
Author: Tandem Media
|
|
6
|
+
Project-URL: Homepage, https://github.com/Tandem-Media/fastapi-alertengine
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: fastapi
|
|
10
|
+
Requires-Dist: redis
|
|
11
|
+
Requires-Dist: pydantic-settings
|
|
12
|
+
Requires-Dist: httpx
|
|
13
|
+
Provides-Extra: dev
|
|
14
|
+
Requires-Dist: uvicorn[standard]; extra == "dev"
|
|
15
|
+
|
|
16
|
+
# fastapi-alertengine
|
|
17
|
+
Production-ready request monitoring and alerting for FastAPI apps using Redis Streams
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "fastapi-alertengine"
|
|
7
|
+
version = "1.0.0"
|
|
8
|
+
description = "FastAPI AlertEngine: fintech-grade request monitoring (p95 latency + error rate) without Prometheus."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
authors = [
|
|
12
|
+
{ name = "Tandem Media" }
|
|
13
|
+
]
|
|
14
|
+
license = { file = "LICENSE" }
|
|
15
|
+
|
|
16
|
+
dependencies = [
|
|
17
|
+
"fastapi",
|
|
18
|
+
"redis",
|
|
19
|
+
"pydantic-settings",
|
|
20
|
+
"httpx",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[project.optional-dependencies]
|
|
24
|
+
dev = [
|
|
25
|
+
"uvicorn[standard]",
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
[project.urls]
|
|
29
|
+
Homepage = "https://github.com/Tandem-Media/fastapi-alertengine"
|