fastapi-elasticsearch-middleware 0.1.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_elasticsearch_middleware-0.1.0/PKG-INFO +21 -0
- fastapi_elasticsearch_middleware-0.1.0/README.md +10 -0
- fastapi_elasticsearch_middleware-0.1.0/fastapi_elasticsearch_middleware.egg-info/PKG-INFO +21 -0
- fastapi_elasticsearch_middleware-0.1.0/fastapi_elasticsearch_middleware.egg-info/SOURCES.txt +7 -0
- fastapi_elasticsearch_middleware-0.1.0/fastapi_elasticsearch_middleware.egg-info/dependency_links.txt +1 -0
- fastapi_elasticsearch_middleware-0.1.0/fastapi_elasticsearch_middleware.egg-info/requires.txt +2 -0
- fastapi_elasticsearch_middleware-0.1.0/fastapi_elasticsearch_middleware.egg-info/top_level.txt +1 -0
- fastapi_elasticsearch_middleware-0.1.0/setup.cfg +4 -0
- fastapi_elasticsearch_middleware-0.1.0/setup.py +17 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: fastapi_elasticsearch_middleware
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Elasticsearch Logger Middleware for FastAPI
|
|
5
|
+
Home-page: https://github.com/GGontijo/fastapi-elasticsearch-middleware.git
|
|
6
|
+
Author: Gabriel Gontijo
|
|
7
|
+
Author-email: gabrieldercilio08@gmail.com
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: fastapi
|
|
10
|
+
Requires-Dist: elasticsearch
|
|
11
|
+
|
|
12
|
+
# Elasticsearch Logger Middleware for FastAPI
|
|
13
|
+
|
|
14
|
+
This middleware enables logging of requests and responses to Elasticsearch in a FastAPI application. It provides detailed logs including request method, URL path, query parameters, request and response headers, status code, and response body.
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
You can install the middleware via pip:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
pip install fastapi-elasticsearch-middleware
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Elasticsearch Logger Middleware for FastAPI
|
|
2
|
+
|
|
3
|
+
This middleware enables logging of requests and responses to Elasticsearch in a FastAPI application. It provides detailed logs including request method, URL path, query parameters, request and response headers, status code, and response body.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
You can install the middleware via pip:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install fastapi-elasticsearch-middleware
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: fastapi_elasticsearch_middleware
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Elasticsearch Logger Middleware for FastAPI
|
|
5
|
+
Home-page: https://github.com/GGontijo/fastapi-elasticsearch-middleware.git
|
|
6
|
+
Author: Gabriel Gontijo
|
|
7
|
+
Author-email: gabrieldercilio08@gmail.com
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: fastapi
|
|
10
|
+
Requires-Dist: elasticsearch
|
|
11
|
+
|
|
12
|
+
# Elasticsearch Logger Middleware for FastAPI
|
|
13
|
+
|
|
14
|
+
This middleware enables logging of requests and responses to Elasticsearch in a FastAPI application. It provides detailed logs including request method, URL path, query parameters, request and response headers, status code, and response body.
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
You can install the middleware via pip:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
pip install fastapi-elasticsearch-middleware
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
setup.py
|
|
3
|
+
fastapi_elasticsearch_middleware.egg-info/PKG-INFO
|
|
4
|
+
fastapi_elasticsearch_middleware.egg-info/SOURCES.txt
|
|
5
|
+
fastapi_elasticsearch_middleware.egg-info/dependency_links.txt
|
|
6
|
+
fastapi_elasticsearch_middleware.egg-info/requires.txt
|
|
7
|
+
fastapi_elasticsearch_middleware.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
fastapi_elasticsearch_middleware-0.1.0/fastapi_elasticsearch_middleware.egg-info/top_level.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name='fastapi_elasticsearch_middleware',
|
|
5
|
+
version='0.1.0',
|
|
6
|
+
url='https://github.com/GGontijo/fastapi-elasticsearch-middleware.git',
|
|
7
|
+
description='Elasticsearch Logger Middleware for FastAPI',
|
|
8
|
+
long_description_content_type='text/markdown',
|
|
9
|
+
long_description=open('README.md').read(),
|
|
10
|
+
author='Gabriel Gontijo',
|
|
11
|
+
author_email='gabrieldercilio08@gmail.com',
|
|
12
|
+
packages=find_packages(),
|
|
13
|
+
install_requires=[
|
|
14
|
+
'fastapi',
|
|
15
|
+
'elasticsearch',
|
|
16
|
+
],
|
|
17
|
+
)
|