2016-08-24 08:12:20 +01:00
|
|
|
source: Extensions/Billing-Module.md
|
2014-11-28 01:26:28 +01:00
|
|
|
# Billing Module
|
|
|
|
|
2016-04-10 16:33:02 +02:00
|
|
|
With the billing module you can create a bill, assign a quota to it and add ports to it.
|
|
|
|
It then tracks the ports usage and shows you the usage in the bill, including any overage.
|
|
|
|
Accounting by both total transferred data and 95th percentile is supported.
|
|
|
|
|
2014-01-28 20:44:04 +00:00
|
|
|
To enable and use the billing module you need to perform the following steps:
|
|
|
|
|
2014-11-28 01:26:28 +01:00
|
|
|
Edit `config.php` and add (or enable) the following line near the end of the config
|
|
|
|
|
|
|
|
```php
|
|
|
|
$config['enable_billing'] = 1; # Enable Billing
|
|
|
|
```
|
|
|
|
|
|
|
|
Edit `/etc/cron.d/librenms` and add the following:
|
2014-01-28 20:44:04 +00:00
|
|
|
|
2014-11-28 01:26:28 +01:00
|
|
|
```bash
|
2015-08-13 11:36:08 +02:00
|
|
|
*/5 * * * * librenms /opt/librenms/poll-billing.php >> /dev/null 2>&1
|
|
|
|
01 * * * * librenms /opt/librenms/billing-calculate.php >> /dev/null 2>&1
|
2014-11-28 01:26:28 +01:00
|
|
|
```
|
2014-01-28 20:44:04 +00:00
|
|
|
|
2015-08-13 11:36:08 +02:00
|
|
|
Create billing graphs as required.
|
2016-03-02 18:39:16 +00:00
|
|
|
|
|
|
|
## Options
|
|
|
|
|
|
|
|
Billing data is stored in the MySQL database, and you may wish to purge the detailed
|
|
|
|
stats for old data (per-month totals will always be kept). To enable this, add the
|
|
|
|
following to `config.php`:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$config['billing_data_purge'] = 12; // Number of months to retain
|
|
|
|
```
|
|
|
|
|
|
|
|
Data for the last complete billing cycle will always be retained - only data older than
|
|
|
|
this by the configured number of months will be removed. This task is performed in the
|
2016-04-10 16:33:02 +02:00
|
|
|
daily cleanup tasks.
|