django-orchestra/orchestra/contrib/orders/settings.py

47 lines
1.2 KiB
Python
Raw Normal View History

2015-05-04 19:52:53 +00:00
from orchestra.contrib.settings import Setting
2014-05-08 16:59:35 +00:00
2015-04-27 14:54:17 +00:00
ORDERS_BILLING_BACKEND = Setting('ORDERS_BILLING_BACKEND',
'orchestra.contrib.orders.billing.BillsBackend',
validators=[Setting.validate_import_class],
help_text="Pluggable backend for bill generation.",
)
2014-09-08 14:23:06 +00:00
2015-04-27 14:54:17 +00:00
ORDERS_SERVICE_MODEL = Setting('ORDERS_SERVICE_MODEL',
'services.Service',
validators=[Setting.validate_model_label],
2015-04-27 14:54:17 +00:00
help_text="Pluggable service class.",
)
2014-10-01 21:03:16 +00:00
2015-04-27 14:54:17 +00:00
ORDERS_EXCLUDED_APPS = Setting('ORDERS_EXCLUDED_APPS',
(
'orders',
'admin',
'contenttypes',
'auth',
'migrations',
'sessions',
'orchestration',
'bills',
'services',
2016-06-17 10:00:04 +00:00
'mailer',
'issues',
),
help_text="Prevent inspecting these apps for service accounting."
)
2015-04-27 14:54:17 +00:00
ORDERS_METRIC_ERROR = Setting('ORDERS_METRIC_ERROR',
2015-04-29 10:51:30 +00:00
0.05,
help_text=("Only account for significative changes.<br>"
2015-04-27 14:54:17 +00:00
"metric_storage new value: <tt>lastvalue*(1+threshold) > currentvalue or lastvalue*threshold < currentvalue</tt>."),
)
ORDERS_BILLED_METRIC_CLEANUP_DAYS = Setting('ORDERS_BILLED_METRIC_CLEANUP_DAYS',
40,
help_text=("Number of days after a billed stored metric is deleted."),
)