Moesif Middleware for Python WSGI based platforms (Flask, Bottle & Others)
Project description
Moesif Middleware for Python WSGI based Frameworks
WSGI middleware that automatically logs incoming or outgoing API calls and sends to Moesif for API analytics and monitoring. Supports Python Frameworks built on WSGI such as Flask, Bottle, and Pyramid.
WSGI (Web Server Gateway Interface) is a standard (PEP 3333) that describes how a web server communicates with web applications. Many Python Frameworks are build on top of WSGI, such as Flask, Bottle, Pyramid etc. Moesif WSGI Middleware help APIs that are build on top of these Frameworks to easily integrate with Moesif.
How to install
pip install moesifwsgi
How to use
Flask
Wrap your wsgi_app with the Moesif middleware.
from moesifwsgi import MoesifMiddleware
moesif_settings = {
'APPLICATION_ID': 'Your Moesif Application id',
'LOG_BODY': True,
# ... For other options see below.
}
app.wsgi_app = MoesifMiddleware(app.wsgi_app, moesif_settings)
Your Moesif Application Id can be found in the Moesif Portal. After signing up for a Moesif account, your Moesif Application Id will be displayed during the onboarding steps.
You can always find your Moesif Application Id at any time by logging into the Moesif Portal, click on the top right menu, and then clicking API Keys.
For an example with Flask, see example in the /examples/flask
folder of this repo.
Bottle
Wrap your bottle app with the Moesif middleware.
from moesifwsgi import MoesifMiddleware
app = bottle.Bottle()
moesif_settings = {
'APPLICATION_ID': 'Your Moesif Application Id',
'LOG_BODY': True,
# ... For other options see below.
}
bottle.run(app=MoesifMiddleware(app, moesif_settings))
For an example with Bottle, see example in the /examples/bottle
folder of this repo.
Pyramid
from pyramid.config import Configurator
from moesifwsgi import MoesifMiddleware
if __name__ == '__main__':
config = Configurator()
config.add_route('hello', '/')
config.scan()
app = config.make_wsgi_app()
# configure your moesif settings
moesif_settings = {
'APPLICATION_ID': 'Your Moesif Application Id',
'LOG_BODY': True,
# ... For other options see below.
}
# Put middleware
app = MoesifMiddleware(app, moesif_settings)
server = make_server('0.0.0.0', 8080, app)
server.serve_forever()
Other WSGI frameworks
If you are using a framework that is built on top of WSGI, it should work just by adding the Moesif middleware. Please read the documentation for your specific framework on how to add middleware.
Configuration options
The app is the original WSGI app instance, and the environ is a WSGI environ. Also, Moesif adds the following to the environ variable
environ['moesif.request_body'] - A json object or base64 encoded string if couldn't parse the request body as json
environ["moesif.response_body_chunks"] - A response body chunks
environ["moesif.response_headers"] - A dict representing the response headers
APPLICATION_ID
(required), string, is obtained via your Moesif Account, this is required.
SKIP
(optional) (app, environ) => boolean, a function that takes a WSGI app and an environ, and returns true if you want to skip this particular event.
IDENTIFY_USER
(optional, but highly recommended) (app, environ, response_headers) => string, a function that takes an app, an environ and an optional parameter response headers, and returns a string that is the user id used by your system. While Moesif tries to identify users automatically, but different frameworks and your implementation might be very different, it would be helpful and much more accurate to provide this function.
IDENTIFY_COMPANY
(optional) (app, environ, response_headers) => string, a function that takes an app, an environ and an optional parameter response headers, and returns a string that is the company id for this event.
GET_METADATA
(optional) (app, environ) => dictionary, a function that takes an app and an environ, and returns a dictionary (must be able to be encoded into JSON). This allows your to associate this event with custom metadata. For example, you may want to save a VM instance_id, a trace_id, or a tenant_id with the request.
GET_SESSION_TOKEN
(optional) (app, environ) => string, a function that takes an app and an environ, and returns a string that is the session token for this event. Again, Moesif tries to get the session token automatically, but if you setup is very different from standard, this function will be very help for tying events together, and help you replay the events.
MASK_EVENT_MODEL
(optional) (EventModel) => EventModel, a function that takes an EventModel and returns an EventModel with desired data removed. The return value must be a valid EventModel required by Moesif data ingestion API. For details regarding EventModel please see the Moesif Python API Documentation.
DEBUG
(optional) boolean, a flag to see debugging messages.
LOG_BODY
(optional) boolean, default True, Set to False to remove logging request and response body.
EVENT_QUEUE_SIZE
(optional) int, default 1000000, the maximum number of event objects queued in memory pending upload to Moesif. If the queue is full additional calls to MoesifMiddleware
will return immediately without logging the event, so this number should be set based on the expected event size and memory capacity
EVENT_WORKER_COUNT
(optional) int, default 2, the number of worker threads to use for uploading events to Moesif. If you have a large number of events being logged, increasing this number can improve upload performance.
BATCH_SIZE
(optional) int, default 100, Maximum batch size when sending events to Moesif when reading from the queue
EVENT_BATCH_TIMEOUT
(optional) int, default 2, Maximum time in seconds to wait before sending a batch of events to Moesif when reading from the queue
AUTHORIZATION_HEADER_NAME
(optional) string, A request header field name used to identify the User in Moesif. Default value is authorization
. Also, supports a comma separated string. We will check headers in order like "X-Api-Key,Authorization"
.
AUTHORIZATION_USER_ID_FIELD
(optional) string, A field name used to parse the User from authorization header in Moesif. Default value is sub
.
BASE_URI
(optional) string, A local proxy hostname when sending traffic via secure proxy. Please set this field when using secure proxy. For more details, refer secure proxy documentation.
Options specific to outgoing API calls
The options below are applicable to outgoing API calls (calls you initiate using the Python Requests lib to third parties like Stripe or to your own services.
For options that use the request and response as input arguments, these use the Requests lib's request or response objects.
If you are not using WSGI, you can import the moesifpythonrequest directly.
CAPTURE_OUTGOING_REQUESTS
boolean, Default False. Set to True to capture all outgoing API calls. False will disable this functionality.
GET_METADATA_OUTGOING
(optional) (req, res) => dictionary, a function that enables you to return custom metadata associated with the logged API calls. Takes in the Requests request and response object as arguments. You should implement a function that returns a dictionary containing your custom metadata. (must be able to be encoded into JSON). For example, you may want to save a VM instance_id, a trace_id, or a resource_id with the request.
SKIP_OUTGOING
(optional) (req, res) => boolean, a function that takes a Requests request and response, and returns true if you want to skip this particular event.
IDENTIFY_USER_OUTGOING
(optional, but highly recommended) (req, res) => string, a function that takes Requests request and response, and returns a string that is the user id used by your system. While Moesif tries to identify users automatically, but different frameworks and your implementation might be very different, it would be helpful and much more accurate to provide this function.
IDENTIFY_COMPANY_OUTGOING
(optional) (req, res) => string, a function that takes Requests request and response, and returns a string that is the company id for this event.
GET_SESSION_TOKEN_OUTGOING
(optional) (req, res) => string, a function that takes Requests request and response, and returns a string that is the session token for this event. Again, Moesif tries to get the session token automatically, but if you setup is very different from standard, this function will be very help for tying events together, and help you replay the events.
LOG_BODY_OUTGOING
(optional) boolean, default True, Set to False to remove logging request and response body.
Example:
def identify_user(app, environ, response_headers=dict()):
# Your custom code that returns a user id string
return "12345"
def identify_company(app, environ, response_headers=dict()):
# Your custom code that returns a company id string
return "67890"
def should_skip(app, environ):
# Your custom code that returns true to skip logging
return "health/probe" in environ.get('PATH_INFO', '')
def get_token(app, environ):
# If you don't want to use the standard WSGI session token,
# add your custom code that returns a string for session/API token
return "XXXXXXXXXXXXXX"
def mask_event(eventmodel):
# Your custom code to change or remove any sensitive fields
if 'password' in eventmodel.response.body:
eventmodel.response.body['password'] = None
return eventmodel
def get_metadata(app, environ):
return {
'datacenter': 'westus',
'deployment_version': 'v1.2.3',
}
moesif_settings = {
'APPLICATION_ID': 'Your Moesif Application Id',
'DEBUG': False,
'LOG_BODY': True,
'IDENTIFY_USER': identify_user,
'IDENTIFY_COMPANY': identify_company,
'GET_SESSION_TOKEN': get_token,
'SKIP': should_skip,
'MASK_EVENT_MODEL': mask_event,
'GET_METADATA': get_metadata,
'CAPTURE_OUTGOING_REQUESTS': False
}
app.wsgi_app = MoesifMiddleware(app.wsgi_app, moesif_settings)
Update User
Update A Single User
Create or update a user profile in Moesif.
The metadata field can be any customer demographic or other info you want to store.
Only the user_id
field is required.
For details, visit the Python API Reference.
api_client = MoesifAPIClient("Your Moesif Application Id").api
# Only user_id is required.
# Campaign object is optional, but useful if you want to track ROI of acquisition channels
# See https://www.moesif.com/docs/api#users for campaign schema
# metadata can be any custom object
user = {
'user_id': '12345',
'company_id': '67890', # If set, associate user with a company object
'campaign': {
'utm_source': 'google',
'utm_medium': 'cpc',
'utm_campaign': 'adwords',
'utm_term': 'api+tooling',
'utm_content': 'landing'
},
'metadata': {
'email': 'john@acmeinc.com',
'first_name': 'John',
'last_name': 'Doe',
'title': 'Software Engineer',
'sales_info': {
'stage': 'Customer',
'lifetime_value': 24000,
'account_owner': 'mary@contoso.com'
},
}
}
update_user = api_client.update_user(user)
Update Users in Batch
Similar to update_user, but used to update a list of users in one batch.
Only the user_id
field is required.
For details, visit the Python API Reference.
api_client = MoesifAPIClient("Your Moesif Application Id").api
userA = {
'user_id': '12345',
'company_id': '67890', # If set, associate user with a company object
'metadata': {
'email': 'john@acmeinc.com',
'first_name': 'John',
'last_name': 'Doe',
'title': 'Software Engineer',
'sales_info': {
'stage': 'Customer',
'lifetime_value': 24000,
'account_owner': 'mary@contoso.com'
},
}
}
userB = {
'user_id': '54321',
'company_id': '67890', # If set, associate user with a company object
'metadata': {
'email': 'mary@acmeinc.com',
'first_name': 'Mary',
'last_name': 'Jane',
'title': 'Software Engineer',
'sales_info': {
'stage': 'Customer',
'lifetime_value': 48000,
'account_owner': 'mary@contoso.com'
},
}
}
update_users = api_client.update_users_batch([userA, userB])
Update Company
Update A Single Company
Create or update a company profile in Moesif.
The metadata field can be any company demographic or other info you want to store.
Only the company_id
field is required.
For details, visit the Python API Reference.
api_client = MoesifAPIClient("Your Moesif Application Id").api
# Only company_id is required.
# Campaign object is optional, but useful if you want to track ROI of acquisition channels
# See https://www.moesif.com/docs/api#update-a-company for campaign schema
# metadata can be any custom object
company = {
'company_id': '67890',
'company_domain': 'acmeinc.com', # If domain is set, Moesif will enrich your profiles with publicly available info
'campaign': {
'utm_source': 'google',
'utm_medium': 'cpc',
'utm_campaign': 'adwords',
'utm_term': 'api+tooling',
'utm_content': 'landing'
},
'metadata': {
'org_name': 'Acme, Inc',
'plan_name': 'Free',
'deal_stage': 'Lead',
'mrr': 24000,
'demographics': {
'alexa_ranking': 500000,
'employee_count': 47
},
}
}
update_company = api_client.update_company(company)
Update Companies in Batch
Similar to update_company, but used to update a list of companies in one batch.
Only the company_id
field is required.
For details, visit the Python API Reference.
api_client = MoesifAPIClient("Your Moesif Application Id").api
companyA = {
'company_id': '67890',
'company_domain': 'acmeinc.com', # If domain is set, Moesif will enrich your profiles with publicly available info
'metadata': {
'org_name': 'Acme, Inc',
'plan_name': 'Free',
'deal_stage': 'Lead',
'mrr': 24000,
'demographics': {
'alexa_ranking': 500000,
'employee_count': 47
},
}
}
companyB = {
'company_id': '09876',
'company_domain': 'contoso.com', # If domain is set, Moesif will enrich your profiles with publicly available info
'metadata': {
'org_name': 'Contoso, Inc',
'plan_name': 'Free',
'deal_stage': 'Lead',
'mrr': 48000,
'demographics': {
'alexa_ranking': 500000,
'employee_count': 53
},
}
}
update_companies = api_client.update_companies_batch([companyA, companyB])
Troubleshooting
When using Docker with Ubuntu based image, if events are not being captured, it could be possible as the image can't find any timezone configuration. In order to resolve that, add the following line to your Dockerfile
ENV TZ=UTC
or you could add RUN apt-get install tzdata
in the Dockerfile.
Other integrations
To view more documentation on integration options, please visit the Integration Options Documentation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file moesifwsgi-1.9.5.tar.gz
.
File metadata
- Download URL: moesifwsgi-1.9.5.tar.gz
- Upload date:
- Size: 33.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da6ee82b8e6ea89c02a877710637de9ffa0bef3c1e685b0bcf02d29b4d90d388 |
|
MD5 | 51cbd1d2c173dee064928ba6b2ae2050 |
|
BLAKE2b-256 | 1af637c6fa9dda27002bc7f1f7b49893063df93ca3c75b6211e3b67f39901cc0 |
Provenance
File details
Details for the file moesifwsgi-1.9.5-py2.py3-none-any.whl
.
File metadata
- Download URL: moesifwsgi-1.9.5-py2.py3-none-any.whl
- Upload date:
- Size: 35.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7a2c9f11671e54db5ee65df4bdb769a11572c27cb5314dded9c0a4a02555cd9 |
|
MD5 | 57177969663b99268b1232fd6a348b19 |
|
BLAKE2b-256 | d292036265367b2ca65ed6f952ac69b71eda4e3ab1d6224c96a7162268870ca3 |