35 lines
809 B
Python
35 lines
809 B
Python
from django.conf import settings
|
|
|
|
|
|
# Pluggable backend for bill generation.
|
|
ORDERS_BILLING_BACKEND = getattr(settings, 'ORDERS_BILLING_BACKEND',
|
|
'orchestra.contrib.orders.billing.BillsBackend'
|
|
)
|
|
|
|
|
|
# Pluggable service class
|
|
ORDERS_SERVICE_MODEL = getattr(settings, 'ORDERS_SERVICE_MODEL',
|
|
'services.Service'
|
|
)
|
|
|
|
|
|
# Prevent inspecting these apps for service accounting
|
|
ORDERS_EXCLUDED_APPS = getattr(settings, 'ORDERS_EXCLUDED_APPS', (
|
|
'orders',
|
|
'admin',
|
|
'contenttypes',
|
|
'auth',
|
|
'migrations',
|
|
'sessions',
|
|
'orchestration',
|
|
'bills',
|
|
'services',
|
|
))
|
|
|
|
|
|
# Only account for significative changes
|
|
# metric_storage new value: lastvalue*(1+threshold) > currentvalue or lastvalue*threshold < currentvalue
|
|
ORDERS_METRIC_ERROR = getattr(settings, 'ORDERS_METRIC_ERROR',
|
|
0.01
|
|
)
|