Python DSL for setting up Flask app CDC
Project description
This is a helper module to allow you to capture all the request/response which comes to your Flask app.
pip install flask-cdc-devlibx
How to use
from flask_cdc import cdc
# We expect you already have the flask app
app = "Existing flask"
# Recorder is called everytime you get request response. You can do anything you want
# In this example we have logged data with a helper function provided by cdc. You can change
# this method to do anything else
def recorder(state):
cdc.log_results(state)
# Wrap app to your session record MW
app.wsgi_app = cdc.SessionRecorderMiddleware(app.wsgi_app, recorder)
How to enable CDC
Set following env variable:
export CDC_KAFKA=<your kafka broker>
export CDC_TOPIC=<your kafka topic for CDC>
You can use the pre-defined recorder to send data to kafka:
app.wsgi_app = cdc.SessionRecorderMiddleware(app.wsgi_app, cdc.publish_result_to_kafka)
Once it is defined then you can see the following data in your topic
{
"request": {
"body": {
"archive_existing_versions": true,
"name": "harish",
"stage": "Staging",
"version": "2"
},
"method": "POST",
"url": "/ajax-api/2.0/preview/mlflow/model-versions/transition-stage"
},
"response": {
"status": "200 OK"
}
}
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aws-ssm-devlibx-0.0.1.tar.gz
(3.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aws-ssm-devlibx-0.0.1.tar.gz.
File metadata
- Download URL: aws-ssm-devlibx-0.0.1.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aab561845f90162e6cc6f26f44622cdbda02d3ffac338e0bd3af381d1bf499b1
|
|
| MD5 |
5fbcdf59f4de728c177d2a1f3ed6b43e
|
|
| BLAKE2b-256 |
4b71c8e905a30243e977228a0b71f859425aa13da6c8d66094950a6fb2e325d6
|
File details
Details for the file aws_ssm_devlibx-0.0.1-py3-none-any.whl.
File metadata
- Download URL: aws_ssm_devlibx-0.0.1-py3-none-any.whl
- Upload date:
- Size: 3.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3757663e1c453e186b2b8be1b76c70bfa1932c80e095168eda88737bf0f004a8
|
|
| MD5 |
253fb5cedbf759bec2cad8ee3fb26bdb
|
|
| BLAKE2b-256 |
7a3f81818c9fbb39c85fa360258ad1186c1aad4b94ad8c0df65af3af24cd5235
|