Skip to main content

Apache Access Logs for Sanic

Project description

# Sanic Apache Access Logs

Sanic Plugin to log access logs in common or combined format

## How to use


```python
from sanic import Sanic
from sanic.response import json
from sanic_apache_accesslogs import AccessLogPlugin


app = Sanic(__name__, configure_logging=False)

AccessLogPlugin(app)


@app.route('/', methods=['GET'])
async def hello(request):
return json({'hello': 'world'})


if __name__ == '__main__':
app.run(host='localhost', port=5000, access_log=False)
```


## Common or Combined?


For choosing the format set the environment variable `ACCESSLOG_USE_COMBINED` to choose combined over common.


## TODO(s)

* Use Sanic configuration context to choose between the logging format.


## Contact

Arnulfo Solis
arnulfojr94@gmail.com

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

sanic_apache_accesslogs-0.2.1.tar.gz (4.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page