Time logger for django
Project description
# django-time-logger
[![Build Status](https://travis-ci.org/telminov/django-time-logger.svg?branch=master)](https://travis-ci.org/telminov/django-time-logger)
[![Coverage Status](https://coveralls.io/repos/telminov/django-time-logger/badge.svg?branch=master)](https://coveralls.io/r/telminov/django-time-logger?branch=master)
Installation python package:
```
$ pip install django-time-logger
```
Add middleware into settings.py:
```
MIDDLEWARE_CLASSES = (
...
'time_logger.middleware.view_logger.ViewTimeLogger',
...
)
```
Set threshold time value in seconds into settings.py for logging view
```
LOG_VIEW_TIME = 10
```
Optional can be set mongo database for logging
```
mongoengine.connect(...)
mongoengine.register_connection('local', ...)
...
LOG_VIEW_TIME_DB_ALIAS = 'local'
```
Mysql configuration for slow queries logging. Block [mysqld] in my.cnf should contain next strings:
```
slow_query_log = 1
long_query_time = 3
log_output = TABLE
expire_logs_days = 1 - See more at: http://gurutek.biz/mysql-slow-query-logging-to-table/#sthash.FZAL94hW.dpuf
```
Set mysql configs without restart server:
```
set global log_slow_queries = 1;
set global long_query_time = 3;
set global log_output = 'TABLE';
set global expire_logs_days = 1;
set global log = 1; - See more at: http://gurutek.biz/mysql-slow-query-logging-to-table/#sthash.FZAL94hW.dpuf
```
[![Build Status](https://travis-ci.org/telminov/django-time-logger.svg?branch=master)](https://travis-ci.org/telminov/django-time-logger)
[![Coverage Status](https://coveralls.io/repos/telminov/django-time-logger/badge.svg?branch=master)](https://coveralls.io/r/telminov/django-time-logger?branch=master)
Installation python package:
```
$ pip install django-time-logger
```
Add middleware into settings.py:
```
MIDDLEWARE_CLASSES = (
...
'time_logger.middleware.view_logger.ViewTimeLogger',
...
)
```
Set threshold time value in seconds into settings.py for logging view
```
LOG_VIEW_TIME = 10
```
Optional can be set mongo database for logging
```
mongoengine.connect(...)
mongoengine.register_connection('local', ...)
...
LOG_VIEW_TIME_DB_ALIAS = 'local'
```
Mysql configuration for slow queries logging. Block [mysqld] in my.cnf should contain next strings:
```
slow_query_log = 1
long_query_time = 3
log_output = TABLE
expire_logs_days = 1 - See more at: http://gurutek.biz/mysql-slow-query-logging-to-table/#sthash.FZAL94hW.dpuf
```
Set mysql configs without restart server:
```
set global log_slow_queries = 1;
set global long_query_time = 3;
set global log_output = 'TABLE';
set global expire_logs_days = 1;
set global log = 1; - See more at: http://gurutek.biz/mysql-slow-query-logging-to-table/#sthash.FZAL94hW.dpuf
```
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
django-time-logger-0.0.15.tar.gz
(12.8 kB
view hashes)
Close
Hashes for django-time-logger-0.0.15.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | a5149a7e478d9a69389713ace16ce801c505376a054e86b2a15a29b27f89ccf0 |
|
MD5 | dcb22803184fe68ddc63a7c05af6f7a2 |
|
BLAKE2b-256 | 97f3a8c6dfb0a7c62689a914cdf2e0345a51069b949723f2a30cf336c55598a3 |